mirror of
https://github.com/servo/servo.git
synced 2025-10-12 14:30:25 +01:00
34 lines
905 B
JavaScript
34 lines
905 B
JavaScript
// META: variant=
|
|
// META: variant=?wss
|
|
// META: variant=?wpt_flags=h2
|
|
|
|
var wsocket;
|
|
test(function() {
|
|
assert_throws_dom("SYNTAX_ERR", function() {
|
|
wsocket = new WebSocket("/echo")
|
|
});
|
|
}, "Url is /echo - should throw SYNTAX_ERR");
|
|
|
|
test(function() {
|
|
assert_throws_dom("SYNTAX_ERR", function() {
|
|
wsocket = new WebSocket("mailto:microsoft@microsoft.com")
|
|
});
|
|
}, "Url is a mail address - should throw SYNTAX_ERR");
|
|
|
|
test(function() {
|
|
assert_throws_dom("SYNTAX_ERR", function() {
|
|
wsocket = new WebSocket("about:blank")
|
|
});
|
|
}, "Url is about:blank - should throw SYNTAX_ERR");
|
|
|
|
test(function() {
|
|
assert_throws_dom("SYNTAX_ERR", function() {
|
|
wsocket = new WebSocket("?test")
|
|
});
|
|
}, "Url is ?test - should throw SYNTAX_ERR");
|
|
|
|
test(function() {
|
|
assert_throws_dom("SYNTAX_ERR", function() {
|
|
wsocket = new WebSocket("#test")
|
|
});
|
|
}, "Url is #test - should throw SYNTAX_ERR");
|