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

Side by Side Diff: LayoutTests/fast/history/history-length-append-subframe-with-hash.html

Issue 806183005: Remove FrameLoader's checkLoadComplete and checkLoadCompleteForThisFrame (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Helpers Created 5 years, 11 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../../resources/js-test.js"></script> 4 <script src="../../resources/js-test.js"></script>
5 </head> 5 </head>
6 <body> 6 <body>
7 <p id="description"></p> 7 <p id="description"></p>
8 <pre id="console"></pre> 8 <pre id="console"></pre>
9 9
10 <script> 10 <script>
(...skipping 28 matching lines...) Expand all
39 } 39 }
40 } 40 }
41 41
42 function setFrameSrc() { 42 function setFrameSrc() {
43 document.querySelector('iframe').src = 'about:blank/#identifier'; 43 document.querySelector('iframe').src = 'about:blank/#identifier';
44 } 44 }
45 45
46 function setFrameSrcAndfinishTest() { 46 function setFrameSrcAndfinishTest() {
47 document.querySelector('iframe').src = 'about:blank/#identifier'; 47 document.querySelector('iframe').src = 'about:blank/#identifier';
48 testRunner.dumpBackForwardList(); 48 testRunner.dumpBackForwardList();
49 finishJSTest(); 49 setTimeout(function() {
50 finishJSTest();
51 }, 0);
50 } 52 }
51 </script> 53 </script>
52 </body> 54 </body>
53 </html> 55 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698