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

Side by Side Diff: LayoutTests/http/tests/websocket/resources/construct-in-detached-frame.html

Issue 785933005: Check that ExecutionContext and LocalFrame pointers are not null before getting shouldBypassMainWor… (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed expectation file. Was empty Created 6 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
(Empty)
1 <!DOCTYPE html>
2 <script>
3 var parentWindow = parent;
4 var webSocketClass = WebSocket;
5
6 parentWindow.detachIframe();
7 try {
8 new webSocketClass('ws://127.0.0.1/');
9 } catch (e) {
10 parentWindow.console.log(e.message);
11 }
12 parentWindow.done();
13 </script>
OLDNEW
« no previous file with comments | « LayoutTests/http/tests/websocket/construct-in-detached-frame-expected.txt ('k') | Source/core/page/EventSource.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698