OLD | NEW |
1 WebSocket should fail if subprotocol contains a forbidden character. | 1 WebSocket should fail if subprotocol contains a forbidden character. |
2 | 2 |
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
4 | 4 |
5 PASS new WebSocket(url, "\u0000") threw exception SyntaxError: Failed to execute
'connect' on 'WebSocket': The subprotocol '\u0000' is invalid.. | 5 PASS new WebSocket(url, "\u0000") threw exception SyntaxError: Failed to execute
'connect' on 'WebSocket': The subprotocol '\u0000' is invalid.. |
6 PASS new WebSocket(url, "\u0001") threw exception SyntaxError: Failed to execute
'connect' on 'WebSocket': The subprotocol '\u0001' is invalid.. | 6 PASS new WebSocket(url, "\u0001") threw exception SyntaxError: Failed to execute
'connect' on 'WebSocket': The subprotocol '\u0001' is invalid.. |
7 PASS new WebSocket(url, "\u0002") threw exception SyntaxError: Failed to execute
'connect' on 'WebSocket': The subprotocol '\u0002' is invalid.. | 7 PASS new WebSocket(url, "\u0002") threw exception SyntaxError: Failed to execute
'connect' on 'WebSocket': The subprotocol '\u0002' is invalid.. |
8 PASS new WebSocket(url, "\u0003") threw exception SyntaxError: Failed to execute
'connect' on 'WebSocket': The subprotocol '\u0003' is invalid.. | 8 PASS new WebSocket(url, "\u0003") threw exception SyntaxError: Failed to execute
'connect' on 'WebSocket': The subprotocol '\u0003' is invalid.. |
9 PASS new WebSocket(url, "\u0004") threw exception SyntaxError: Failed to execute
'connect' on 'WebSocket': The subprotocol '\u0004' is invalid.. | 9 PASS new WebSocket(url, "\u0004") threw exception SyntaxError: Failed to execute
'connect' on 'WebSocket': The subprotocol '\u0004' is invalid.. |
10 PASS new WebSocket(url, "\u0005") threw exception SyntaxError: Failed to execute
'connect' on 'WebSocket': The subprotocol '\u0005' is invalid.. | 10 PASS new WebSocket(url, "\u0005") threw exception SyntaxError: Failed to execute
'connect' on 'WebSocket': The subprotocol '\u0005' is invalid.. |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
127 PASS WebSocket correctly accepted subprotocol "\u007a" | 127 PASS WebSocket correctly accepted subprotocol "\u007a" |
128 PASS new WebSocket(url, "\u007b") threw exception SyntaxError: Failed to execute
'connect' on 'WebSocket': The subprotocol '{' is invalid.. | 128 PASS new WebSocket(url, "\u007b") threw exception SyntaxError: Failed to execute
'connect' on 'WebSocket': The subprotocol '{' is invalid.. |
129 PASS WebSocket correctly accepted subprotocol "\u007c" | 129 PASS WebSocket correctly accepted subprotocol "\u007c" |
130 PASS new WebSocket(url, "\u007d") threw exception SyntaxError: Failed to execute
'connect' on 'WebSocket': The subprotocol '}' is invalid.. | 130 PASS new WebSocket(url, "\u007d") threw exception SyntaxError: Failed to execute
'connect' on 'WebSocket': The subprotocol '}' is invalid.. |
131 PASS WebSocket correctly accepted subprotocol "\u007e" | 131 PASS WebSocket correctly accepted subprotocol "\u007e" |
132 PASS new WebSocket(url, "\u007f") threw exception SyntaxError: Failed to execute
'connect' on 'WebSocket': The subprotocol '\u007F' is invalid.. | 132 PASS new WebSocket(url, "\u007f") threw exception SyntaxError: Failed to execute
'connect' on 'WebSocket': The subprotocol '\u007F' is invalid.. |
133 PASS successfullyParsed is true | 133 PASS successfullyParsed is true |
134 | 134 |
135 TEST COMPLETE | 135 TEST COMPLETE |
136 | 136 |
OLD | NEW |