mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-12 06:08:24 +02:00
Automatic update from web-platform-testsEditorial: Reindent websocket *.any.js files
Command used:
find . -name "*.any.js" | xargs -I {} js-beautify -r -s 2 -n {}
--
wpt-commits: 78d32dd2ed106a59a34664ade2274426601365de
wpt-pr: 10606
32 lines
847 B
JavaScript
32 lines
847 B
JavaScript
// META: script=websocket.sub.js
|
|
|
|
var wsocket;
|
|
test(function() {
|
|
assert_throws("SYNTAX_ERR", function() {
|
|
wsocket = new WebSocket("/echo")
|
|
});
|
|
}, "Url is /echo - should throw SYNTAX_ERR");
|
|
|
|
test(function() {
|
|
assert_throws("SYNTAX_ERR", function() {
|
|
wsocket = new WebSocket("mailto:microsoft@microsoft.com")
|
|
});
|
|
}, "Url is a mail address - should throw SYNTAX_ERR");
|
|
|
|
test(function() {
|
|
assert_throws("SYNTAX_ERR", function() {
|
|
wsocket = new WebSocket("about:blank")
|
|
});
|
|
}, "Url is about:blank - should throw SYNTAX_ERR");
|
|
|
|
test(function() {
|
|
assert_throws("SYNTAX_ERR", function() {
|
|
wsocket = new WebSocket("?test")
|
|
});
|
|
}, "Url is ?test - should throw SYNTAX_ERR");
|
|
|
|
test(function() {
|
|
assert_throws("SYNTAX_ERR", function() {
|
|
wsocket = new WebSocket("#test")
|
|
});
|
|
}, "Url is #test - should throw SYNTAX_ERR");
|