https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 8d901449a96ee54fbd11868ed44ef8b160c97a14 authored by Marcos Cáceres on 21 March 2018, 04:30:57 UTC
Prevent false positives
Tip revision: 8d90144
constants.js
//This file requires server-side substitutions and must be included as constants.js?pipe=sub

var PORT = "{{ports[ws][0]}}";
var PORT_SSL = "{{ports[wss][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