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

Side by Side Diff: LayoutTests/http/tests/websocket/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
« no previous file with comments | « no previous file | LayoutTests/http/tests/websocket/construct-in-detached-frame-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <script src="/js-test-resources/js-test.js"></script>
3 <script>
4 description('Construct a WebSocket in a detached frame.');
5
6 window.jsTestIsAsync = true;
7
8 function detachIframe()
9 {
10 var testIframe = document.getElementById('testIframe');
11 testIframe.parentNode.removeChild(testIframe);
12 }
13
14 function done()
15 {
16 finishJSTest();
17 }
18 </script>
19 <iframe src="resources/construct-in-detached-frame.html" id="testIframe"></ifram e>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/http/tests/websocket/construct-in-detached-frame-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698