OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <script src="../../fast/repaint/resources/text-based-repaint.js"></script> |
| 3 <script src="../../resources/run-after-display.js"></script> |
| 4 <script> |
| 5 window.testIsAsync = true; |
| 6 </script> |
| 7 <body onload="runRepaintTest()"> |
| 8 <svg width="300" height="200"> |
| 9 <image width="200" height="200" preserveAspectRatio="none" |
| 10 xlink:href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg'
width='50' height='50'><rect width='100%' height='100%' fill='green'/></svg>"></
image> |
| 11 </svg> |
| 12 <script> |
| 13 function repaintTest() { |
| 14 document.querySelector('image').setAttribute('width', 100); |
| 15 requestAnimationFrame(function() { |
| 16 requestAnimationFrame(function() { |
| 17 finishRepaintTest(); |
| 18 }); |
| 19 }); |
| 20 } |
| 21 </script> |
| 22 </body> |
OLD | NEW |