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

Side by Side Diff: LayoutTests/fast/frames/reparented-iframe-cleared-contentWindow.html

Issue 948793003: Fix inconsistent frame detach behavior of ContainerNode::parserRemoveChild. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 months 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <script src='../../resources/js-test.js'></script>
2 <body>
3 <iframe></iframe>
4 <script>
5 description("Assert that parser reparented iframe has detached DOMWindow");
6
7 if (window.testRunner) testRunner.waitUntilDone();
Yuta Kitamura 2015/02/23 07:54:41 Unfold this into two lines
8 iframe = document.getElementsByTagName("iframe")[0];
Yuta Kitamura 2015/02/23 07:54:41 var
9 iframe.onload = function() {
10 shouldBeNull('reparentedIframe.contentWindow');
11 testRunner.notifyDone();
12 };
13 iframe.src = 'resources/reparent-iframe.html';
14 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698