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

Side by Side Diff: chrome/test/data/workers/layout_test_controller.html

Issue 159720: Run the DOM Storage layout tests in the UI test framework since the test shel... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 4 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
(Empty)
1 <script>
2 function LayoutTestController() {
3 this.dumpAsText = function () { };
4 this.waitUntilDone = function () { };
5 this.notifyDone = function () {
6 var cookie = "%COOKIE%=" + encodeURIComponent(document.firstChild.innerText) ;
7 document.cookie = cookie;
8 };
9 }
10 var layoutTestController = new LayoutTestController();
11 window.layoutTestController = layoutTestController;
12 </script>
OLDNEW
« no previous file with comments | « chrome/test/data/layout_tests/layout_test_controller.html ('k') | chrome/test/ui/ui_layout_test.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698