Remove the SCHEME_AND_DOMAIN constant.

All its users are connecting to port 80, which is not typically under the
control of the wpt server.
This commit is contained in:
Ms2ger 2015-06-11 20:13:45 +02:00
parent 61a9f9d7d4
commit 8ddb9cfcb6
7 changed files with 9 additions and 15 deletions

View file

@ -7,6 +7,6 @@
<script>
test(function(t) {
// The protocol attribute must initially return the empty string
assert_equals((new WebSocket(SCHEME_AND_DOMAIN+'/')).protocol, '');
assert_equals((new WebSocket(SCHEME_DOMAIN_PORT + '/empty-message')).protocol, '');
});
</script>