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

Side by Side Diff: content/test/data/gpu/pixel_canvas2d.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 2
3 <!-- READ BEFORE UPDATING: 3 <!-- READ BEFORE UPDATING:
4 If this test is updated make sure to increment the "revision" value of the 4 If this test is updated make sure to increment the "revision" value of the
5 associated test in content/test/gpu/page_sets/pixel_tests.py. This will ensure 5 associated test in content/test/gpu/page_sets/pixel_tests.py. This will ensure
6 that the baseline images are regenerated on the next run. 6 that the baseline images are regenerated on the next run.
7 --> 7 -->
8 8
9 <html> 9 <html>
10 <head> 10 <head>
(...skipping 17 matching lines...) Expand all
28 var canvas = document.getElementById("c"); 28 var canvas = document.getElementById("c");
29 var c2d = canvas.getContext("2d"); 29 var c2d = canvas.getContext("2d");
30 c2d.clearRect(0, 0, canvas.width, canvas.height); 30 c2d.clearRect(0, 0, canvas.width, canvas.height);
31 c2d.fillStyle = "rgba(255, 0, 0, 0.5)"; 31 c2d.fillStyle = "rgba(255, 0, 0, 0.5)";
32 c2d.fillRect(50, 50, 100, 100); 32 c2d.fillRect(50, 50, 100, 100);
33 } 33 }
34 34
35 function waitForFinish() 35 function waitForFinish()
36 { 36 {
37 if (g_swapsBeforeAck == 0) { 37 if (g_swapsBeforeAck == 0) {
38 domAutomationController.setAutomationId(1);
39 domAutomationController.send("SUCCESS"); 38 domAutomationController.send("SUCCESS");
40 } else { 39 } else {
41 g_swapsBeforeAck--; 40 g_swapsBeforeAck--;
42 document.getElementById('container').style.zIndex = g_swapsBeforeAck + 1; 41 document.getElementById('container').style.zIndex = g_swapsBeforeAck + 1;
43 window.requestAnimationFrame(waitForFinish); 42 window.requestAnimationFrame(waitForFinish);
44 } 43 }
45 } 44 }
46 </script> 45 </script>
47 </head> 46 </head>
48 <body onload="main()"> 47 <body onload="main()">
49 <div style="position:relative; width:200px; height:200px; background-color:black "> 48 <div style="position:relative; width:200px; height:200px; background-color:black ">
50 </div> 49 </div>
51 <div id="container" style="position:absolute; top:0px; left:0px"> 50 <div id="container" style="position:absolute; top:0px; left:0px">
52 <canvas id="c" width="200" height="200" class="nomargin"></canvas> 51 <canvas id="c" width="200" height="200" class="nomargin"></canvas>
53 </div> 52 </div>
54 </body> 53 </body>
55 </html> 54 </html>
OLDNEW
« no previous file with comments | « content/test/data/gpu/pixel_browser_plugin.html ('k') | content/test/data/gpu/pixel_canvas2d_accelerated.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698