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

Side by Side Diff: LayoutTests/fast/files/file-reader-immediate-abort.html

Issue 10908101: Merge 127082 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1229/
Patch Set: Created 8 years, 3 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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <body> 3 <body>
4 <pre id='console'></pre> 4 <pre id='console'></pre>
5 <script src="../../resources/gc.js"></script> 5 <script src="../../resources/gc.js"></script>
6 <script> 6 <script>
7 function log(message) 7 function log(message)
8 { 8 {
9 document.getElementById('console').appendChild(document.createTextNode(messa ge + "\n")); 9 document.getElementById('console').appendChild(document.createTextNode(messa ge + "\n"));
10 } 10 }
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 53
54 if (window.testRunner) { 54 if (window.testRunner) {
55 testRunner.dumpAsText(); 55 testRunner.dumpAsText();
56 testRunner.waitUntilDone(); 56 testRunner.waitUntilDone();
57 } 57 }
58 58
59 window.onload = runTests; 59 window.onload = runTests;
60 </script> 60 </script>
61 </body> 61 </body>
62 </html> 62 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698