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

Side by Side Diff: LayoutTests/inspector/elements/resources/iframe-load-event-iframe.js

Issue 9968037: Merge 112549 - Web Inspector: subtree disapears from <iframe> after loading (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1084/
Patch Set: Created 8 years, 8 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
OLDNEW
1 function loadSecondIFrame() 1 function loadSecondIFrame()
2 { 2 {
3 document.getElementById("myframe").onload = null; 3 document.getElementById("myframe").onload = null;
4 document.getElementById("myframe").src = "resources/iframe-load-event-iframe -2.html"; 4 document.getElementById("myframe").src = "resources/iframe-load-event-iframe -2.html";
5 } 5 }
6 6
7 function test() 7 function test()
8 { 8 {
9 InspectorTest.expandElementsTree(step1); 9 InspectorTest.expandElementsTree(step1);
10 10
(...skipping 12 matching lines...) Expand all
23 } 23 }
24 } 24 }
25 25
26 function step2() 26 function step2()
27 { 27 {
28 InspectorTest.addResult("\n\nAfter frame navigate"); 28 InspectorTest.addResult("\n\nAfter frame navigate");
29 InspectorTest.dumpElementsTree(); 29 InspectorTest.dumpElementsTree();
30 InspectorTest.completeTest(); 30 InspectorTest.completeTest();
31 } 31 }
32 } 32 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698