blob: 73c9fadab9d8e249bcfc7e1f6a548becd1e27112 [file] [log] [blame] [edit]
[
"ws://foo bar.com/",
"wss://foo bar.com/",
"ftp://"+location.host+"/",
"mailto:example@example.org",
"about:blank",
location.origin + "/#",
location.origin + "/#test",
"#test"
].forEach(input => {
test(() => {
assert_throws_dom("SyntaxError", () => new WebSocket(input));
}, `new WebSocket("${input}") should throw a "SyntaxError" DOMException`);
});