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

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

Issue 2774423006: Shrink the reference image dimension in OffscreenCanvas tests (Closed)
Patch Set: update reference count Created 3 years, 8 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/gpu_tests/pixel_test_pages.py. This will ens ure 5 associated test in content/test/gpu/gpu_tests/pixel_test_pages.py. This will ens ure
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 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 waitForFinish(); 140 waitForFinish();
141 }; 141 };
142 worker.postMessage( 142 worker.postMessage(
143 {offscreenCanvas1: offscreenCanvas1, 143 {offscreenCanvas1: offscreenCanvas1,
144 offscreenCanvas2: offscreenCanvas2}, 144 offscreenCanvas2: offscreenCanvas2},
145 [offscreenCanvas1, offscreenCanvas2]); 145 [offscreenCanvas1, offscreenCanvas2]);
146 } 146 }
147 </script> 147 </script>
148 </head> 148 </head>
149 <body onload="main()"> 149 <body onload="main()">
150 <div style="position:relative; width:600px; height:300px; background-color:white "> 150 <div style="position:relative; width:400px; height:200px; background-color:white ">
151 </div> 151 </div>
152 <div id="container" style="position:absolute; top:0px; left:0px"> 152 <div id="container" style="position:absolute; top:0px; left:0px">
153 <canvas id="canvas1" width="300" height="300" class="nomargin"></canvas> 153 <canvas id="canvas1" width="200" height="200" class="nomargin"></canvas>
154 <canvas id="canvas2" width="300" height="300" class="nomargin"></canvas> 154 <canvas id="canvas2" width="200" height="200" class="nomargin"></canvas>
155 </div> 155 </div>
156 </body> 156 </body>
157 </html> 157 </html>
OLDNEW
« no previous file with comments | « content/test/data/gpu/pixel_offscreenCanvas_webgl_commit_main.html ('k') | content/test/gpu/gpu_tests/pixel_test_pages.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698