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

Side by Side Diff: content/test/data/gpu/functional_canvas_demo.html

Issue 2503453003: Remove all calls to domAutomationController.setAutomationId.
Patch Set: Fix nacl_browsertest_util.cc Created 3 years, 5 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><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859 -1"> 2 <html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859 -1">
3 <title>Canvas Demo</title> 3 <title>Canvas Demo</title>
4 </head> 4 </head>
5 <body> 5 <body>
6 <canvas id="canv" class="output" width="600" height="400" style="width:600px;hei ght:400px;border:2px solid #c3c3c3;"> 6 <canvas id="canv" class="output" width="600" height="400" style="width:600px;hei ght:400px;border:2px solid #c3c3c3;">
7 <p><b>Browser doesn't support canvas</b></p> 7 <p><b>Browser doesn't support canvas</b></p>
8 </canvas> 8 </canvas>
9 <script> 9 <script>
10 var c = document.getElementById('canv'); 10 var c = document.getElementById('canv');
11 var ctx = c.getContext('2d'); 11 var ctx = c.getContext('2d');
12 ctx.fillStyle = "#000000"; 12 ctx.fillStyle = "#000000";
13 ctx.fillRect(10, 10, 250, 250); 13 ctx.fillRect(10, 10, 250, 250);
14 domAutomationController.setAutomationId(0);
15 domAutomationController.send("FINISHED"); 14 domAutomationController.send("FINISHED");
16 </script> 15 </script>
17 </body> 16 </body>
18 </html> 17 </html>
OLDNEW
« no previous file with comments | « content/test/data/gpu/functional_3d_css.html ('k') | content/test/data/gpu/functional_files/context.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698