https://github.com/web-platform-tests/wpt
Raw File
Tip revision: fee987632e670876c7468ccd695f41fe90911d6b authored by Manuel Rego Casasnovas on 05 April 2018, 07:04:59 UTC
[css-multicol] column-gap normal is 1em per spec now
Tip revision: fee9876
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