https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 9c9417e5255836be1d428e82b48b92070258efd8 authored by Tsuyoshi Horo on 02 April 2018, 03:41:31 UTC
Set SkipServiceWorker flag for synchronous loads from the main thread.
Tip revision: 9c9417e
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