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

Side by Side Diff: chrome/test/data/extensions/browsertest/last_error/bg.html

Issue 3129003: remove toolstrips (Closed)
Patch Set: merge Created 10 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
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <script> 3 <script>
4 function fail() { 4 function fail() {
5 window.domAutomationController.send(false); 5 window.domAutomationController.send(false);
6 throw "Failed!"; 6 throw "Failed!";
7 } 7 }
8 8
9 function succeed() { 9 function succeed() {
10 window.domAutomationController.send(true); 10 window.domAutomationController.send(true);
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 52
53 succeed(); 53 succeed();
54 } 54 }
55 </script> 55 </script>
56 </head> 56 </head>
57 <body> 57 <body>
58 <div onclick="testLastError();"> Last Error Test </div> 58 <div onclick="testLastError();"> Last Error Test </div>
59 </body> 59 </body>
60 </html> 60 </html>
61 61
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698