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

Side by Side Diff: LayoutTests/fast/events/page-visibility-iframe-delete-test.html

Issue 48903019: Delete js-test-post.js. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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
1 <html> 1 <html>
2 <body onload="startTest()"> 2 <body onload="startTest()">
3 3
4 <script src="../js/resources/js-test-pre.js"></script> 4 <script src="../js/resources/js-test-pre.js"></script>
5 5
6 <script> 6 <script>
7 7
8 description("This test checks that the page visibility event propagation does no t crash the browser when frames are added / deleted."); 8 description("This test checks that the page visibility event propagation does no t crash the browser when frames are added / deleted.");
9 9
10 var jsTestIsAsync = true; 10 var jsTestIsAsync = true;
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 } 58 }
59 59
60 function onFrame2VisibilityChange() { 60 function onFrame2VisibilityChange() {
61 debug("Visibility of sub frame 2 changed."); 61 debug("Visibility of sub frame 2 changed.");
62 // Delete frame 1. 62 // Delete frame 1.
63 document.body.removeChild(frame1); 63 document.body.removeChild(frame1);
64 } 64 }
65 65
66 </script> 66 </script>
67 67
68 <script src="../js/resources/js-test-post.js"></script>
69 68
70 <iframe id="topFrame1" onload="startTest()" ></iframe> 69 <iframe id="topFrame1" onload="startTest()" ></iframe>
71 <iframe id="topFrame2" onload="startTest()" ></iframe> 70 <iframe id="topFrame2" onload="startTest()" ></iframe>
72 <iframe id="topFrame3" onload="startTest()" src="resources/page-visibility-ifram e-delete-test-frame.html"></iframe> 71 <iframe id="topFrame3" onload="startTest()" src="resources/page-visibility-ifram e-delete-test-frame.html"></iframe>
73 <iframe id="topFrame4" onload="startTest()" ></iframe> 72 <iframe id="topFrame4" onload="startTest()" ></iframe>
74 </body> 73 </body>
75 </html> 74 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698