| OLD | NEW |
| 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 Loading... |
| 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> |
| OLD | NEW |