https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 20d9c6904aae7256cbf94e919e7996f215af2900 authored by Aryeh Gregor on 03 May 2016, 18:25:47 UTC
More updates for new <track kind> invalid value default
Tip revision: 20d9c69
constants.js
//This file requires server-side substitutions and must be included as constants.js?pipe=sub

var PORT = "{{ports[ws][0]}}";
//FIXME: Add support for wss
var PORT_SSL = "{{ports[ws][0]}}";

var SCHEME_DOMAIN_PORT;
if (location.search == '?wss') {
  SCHEME_DOMAIN_PORT = 'wss://{{host}}:' + PORT_SSL;
} else {
  SCHEME_DOMAIN_PORT = 'ws://{{host}}:' + PORT;
}
back to top