Chromium Code Reviews| OLD | NEW |
|---|---|
| (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> | |
| OLD | NEW |