| OLD | NEW |
| 1 <!-- Test for https://bugs.webkit.org/show_bug.cgi?id=46319 --> | 1 <!-- Test for https://bugs.webkit.org/show_bug.cgi?id=46319 --> |
| 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> | 5 <body> |
| 6 <canvas id="canvas" width="100" height="100"></canvas> | 6 <canvas id="canvas" width="100" height="100"></canvas> |
| 7 <script> | 7 <script> |
| 8 var canvas = document.getElementById('canvas'); | 8 var canvas = document.getElementById('canvas'); |
| 9 var ctx = canvas.getContext('2d'); | 9 var ctx = canvas.getContext('2d'); |
| 10 | 10 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 { | 29 { |
| 30 // patch up red squares with putImageData | 30 // patch up red squares with putImageData |
| 31 ctx.putImageData(imageDataGreen, 0, 0); | 31 ctx.putImageData(imageDataGreen, 0, 0); |
| 32 ctx.putImageData(imageDataGreen, 40, 40); | 32 ctx.putImageData(imageDataGreen, 40, 40); |
| 33 ctx.putImageData(imageDataRedWithInsetGreen, 70, 70, 10, 10, 10, 10)
; | 33 ctx.putImageData(imageDataRedWithInsetGreen, 70, 70, 10, 10, 10, 10)
; |
| 34 // Because canvas invalidations are processed at the end of the curr
ent task, | 34 // Because canvas invalidations are processed at the end of the curr
ent task, |
| 35 // the repaint test has to end in a subsequent task in order to capt
ure the repaint. | 35 // the repaint test has to end in a subsequent task in order to capt
ure the repaint. |
| 36 setTimeout(finishRepaintTest, 0); | 36 setTimeout(finishRepaintTest, 0); |
| 37 } | 37 } |
| 38 | 38 |
| 39 window.onload = runRepaintTest; | 39 window.onload = runRepaintAndPixelTest; |
| 40 </script> | 40 </script> |
| 41 </body> | 41 </body> |
| OLD | NEW |