https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 77e08b2f2ac1596c188294a62d12167a8b478994 authored by Anne van Kesteren on 11 November 2014, 11:32:04 UTC
Test current Realm (still to be defined in more detail)
Tip revision: 77e08b2
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