| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script src="resources/text-based-repaint.js"></script> | 3 <script src="resources/text-based-repaint.js"></script> |
| 4 </head> | 4 </head> |
| 5 <body style="background: url(../../fast/images/resources/grid-large.png) no-repe
at; background-size: 55px 55px;"> | 5 <body style="background: url(../../images/resources/grid-large.png) no-repeat; b
ackground-size: 55px 55px;"> |
| 6 <div id="mask" style="position: absolute; top: -100px; left: -100px; | 6 <div id="mask" style="position: absolute; top: -100px; left: -100px; |
| 7 background-color: blue; width: 18.33px; height: 18.33p
x;"></div> | 7 background-color: blue; width: 18.33px; height: 18.33p
x;"></div> |
| 8 <script> | 8 <script> |
| 9 var pos = [ | 9 var pos = [ |
| 10 // First row. | 10 // First row. |
| 11 [0, 0], | 11 [0, 0], |
| 12 [0, 18.33], | 12 [0, 18.33], |
| 13 [0, 36.67], | 13 [0, 36.67], |
| 14 | 14 |
| 15 // Second row. | 15 // Second row. |
| (...skipping 29 matching lines...) Expand all Loading... |
| 45 if (window.testRunner) | 45 if (window.testRunner) |
| 46 repaintTest(); | 46 repaintTest(); |
| 47 else | 47 else |
| 48 setTimeout("repaintTest();", 1000); | 48 setTimeout("repaintTest();", 1000); |
| 49 } | 49 } |
| 50 | 50 |
| 51 onload = runRepaintAndPixelTest; | 51 onload = runRepaintAndPixelTest; |
| 52 </script> | 52 </script> |
| 53 </body> | 53 </body> |
| 54 </html> | 54 </html> |
| OLD | NEW |