https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 278bef4fc3194c6a6a5ba46f1215774f301f971f authored by Philip Jägenstedt on 22 March 2018, 14:57:46 UTC
Dummy idlharness.js change to debug #10144
Tip revision: 278bef4
Create-protocol-with-space.htm
<!DOCTYPE html>
<html>
<head>
    <title>W3C WebSocket API - Create WebSocket - protocol with space</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.sub.js"></script>
</head>
<body>
    <div id="log"></div>
    <script type="text/javascript">
        test(function () {
            var wsocket;
            assert_throws("SYNTAX_ERR", function () { wsocket = CreateWebSocketWithSpaceInProtocol("ec ho") });
        }, "W3C WebSocket API - Create WebSocket - Pass a valid URL and a protocol string with a space in it - SYNTAX_ERR is thrown")
    </script>
</body>
</html>
back to top