OLD | NEW |
1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
| 2 <html style="font-size:10px"> |
2 <script src="../../fast/repaint/resources/text-based-repaint.js"></script> | 3 <script src="../../fast/repaint/resources/text-based-repaint.js"></script> |
3 <script> | 4 <script> |
4 window.testIsAsync = true; | 5 window.testIsAsync = true; |
5 window.onload = runRepaintTest; | 6 window.onload = runRepaintAndPixelTest; |
6 | 7 |
7 function repaintTest() { | 8 function repaintTest() { |
8 var svg = document.querySelector('svg'); | |
9 setTimeout(function() { | 9 setTimeout(function() { |
10 svg.style.backgroundColor = "green"; | 10 document.getElementsByTagName("html")[0].style.fontSize="5px"; |
11 requestAnimationFrame(function() { | 11 requestAnimationFrame(function() { |
12 if (window.testRunner) | 12 if (window.testRunner) |
13 finishRepaintTest(); | 13 finishRepaintTest(); |
14 }); | 14 }); |
15 }, 0); | 15 }, 0); |
16 }; | 16 }; |
17 </script> | 17 </script> |
18 <svg width="200px" height="100px" viewBox="0 0 100 100" | 18 <body> |
19 style="background-color: red"> | 19 <div style="font-size:10px"> |
| 20 <svg style="width:20rem; height:20rem;"> |
| 21 <rect width="20rem" height="20em" style="fill:rgb(0,0,255);" /> |
20 </svg> | 22 </svg> |
| 23 </div> |
| 24 </body> |
| 25 </html> |
OLD | NEW |