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

Side by Side Diff: third_party/WebKit/LayoutTests/html/document_metadata/resources/head-check.js

Issue 2780363002: Rename subdirectory names in LayoutTests/html/. (Closed)
Patch Set: Created 3 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 var maxTests = 4; 1 var maxTests = 4;
2 var currentTest = 1; 2 var currentTest = 1;
3 var iframe; 3 var iframe;
4 4
5 if (window.testRunner) { 5 if (window.testRunner) {
6 window.testRunner.waitUntilDone(); 6 window.testRunner.waitUntilDone();
7 } 7 }
8 8
9 function testAndLoadNext() { 9 function testAndLoadNext() {
10 iframe = document.getElementById("iframe"); 10 iframe = document.getElementById("iframe");
(...skipping 10 matching lines...) Expand all
21 iframe.src = "data:text/html,"; 21 iframe.src = "data:text/html,";
22 } 22 }
23 else { 23 else {
24 iframe.style.display = "none"; 24 iframe.style.display = "none";
25 debug('<span class="pass">TEST COMPLETE</span>'); 25 debug('<span class="pass">TEST COMPLETE</span>');
26 if (window.testRunner) { 26 if (window.testRunner) {
27 window.testRunner.notifyDone(); 27 window.testRunner.notifyDone();
28 } 28 }
29 } 29 }
30 } 30 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698