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

Side by Side Diff: content/test/data/layout_tests/layout_test_controller.html

Issue 9820005: Move PathService's DIR_LAYOUT_TESTS from chrome to content (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove indexed_db_uitest changes Created 8 years, 9 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
« no previous file with comments | « content/test/data/layout_tests/clear_dom_storage.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <script> 1 <script>
2 function LayoutTestController() { 2 function LayoutTestController() {
3 this.dump_as_text_ = false; 3 this.dump_as_text_ = false;
4 this.wait_until_done_ = false; 4 this.wait_until_done_ = false;
5 5
6 this.dumpAsText = function () { 6 this.dumpAsText = function () {
7 this.dump_as_text_ = true; 7 this.dump_as_text_ = true;
8 }; 8 };
9 9
10 this.waitUntilDone = function () { 10 this.waitUntilDone = function () {
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 layoutTestController.notifyDone(); 46 layoutTestController.notifyDone();
47 } else { 47 } else {
48 setTimeout(layoutTestController.OnEvent, 200); 48 setTimeout(layoutTestController.OnEvent, 200);
49 } 49 }
50 }; 50 };
51 } 51 }
52 52
53 window.layoutTestController = new LayoutTestController(); 53 window.layoutTestController = new LayoutTestController();
54 window.addEventListener('load', layoutTestController.OnEvent, false); 54 window.addEventListener('load', layoutTestController.OnEvent, false);
55 </script> 55 </script>
OLDNEW
« no previous file with comments | « content/test/data/layout_tests/clear_dom_storage.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698