Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(148)

Side by Side Diff: LayoutTests/http/tests/websocket/invalid-subprotocol-characters-expected.txt

Issue 101143002: Remove hybi sub directory for WebSocket layout tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698