https://github.com/web-platform-tests/wpt
Raw File
Tip revision: f9b2eca3ae1bba2a5bc307d061e450e6ac8a98e0 authored by Domenic Denicola on 01 December 2015, 16:27:52 UTC
Fix up disallow-crossorigin tests based on issues in OP
Tip revision: f9b2eca
Create-wrong-scheme.htm
<!DOCTYPE html>
<html>
<head>
    <title>W3C WebSocket API - Create WebSocket - non ws/wss scheme in url</title>
    <script type="text/javascript" src="/resources/testharness.js"></script>
    <script type="text/javascript" src="/resources/testharnessreport.js"></script>
    <script type="text/javascript" src="websocket.js?pipe=sub"></script>
</head>
<body>
    <div id="log"></div>
    <script type="text/javascript">
        test(function () {
            var wsocket;
            assert_throws("SYNTAX_ERR", function () { wsocket = CreateWebSocketNonWsScheme() });
        }, "W3C WebSocket API - Create WebSocket - Pass a URL with a non ws/wss scheme - SYNTAX_ERR is thrown")
    </script>
</body>
</html>
back to top