| OLD | NEW |
| (Empty) | |
| 1 <!doctype HTML> |
| 2 <body> |
| 3 <div style="height: 2000px; width: 2000px;"> |
| 4 <div id="targetImage" style="width: 50px; height: 50px"></div> |
| 5 <img id="testTarget" style="visibility: hidden"> |
| 6 </div> |
| 7 <script src="resources/text-based-repaint.js"></script> |
| 8 <script> |
| 9 window.testIsAsync = true; |
| 10 |
| 11 function repaintTest() { |
| 12 if (window.internals) |
| 13 internals.advanceImageAnimation(testTarget); |
| 14 requestAnimationFrame(function() { |
| 15 finishRepaintTest(); |
| 16 }); |
| 17 } |
| 18 |
| 19 onload = function() { |
| 20 targetImage.style.background = "url(../../fast/backgrounds/resources/red-gre
en-animated.webp)"; |
| 21 |
| 22 // Use a parallel image element as a hack to detect whether the image has lo
aded, and therefore |
| 23 // we'll get a frame. |
| 24 testTarget.onload = runRepaintTest; |
| 25 testTarget.src = "../../fast/backgrounds/resources/red-green-animated.webp"; |
| 26 } |
| 27 </script> |
| OLD | NEW |