OLD | NEW |
1 <!doctype html> | 1 <!doctype html> |
2 <head> | 2 <head> |
3 <script src="../../fast/repaint/resources/text-based-repaint.js" type="text/
javascript"></script> | 3 <script src="../../fast/repaint/resources/text-based-repaint.js" type="text/
javascript"></script> |
4 <style> | 4 <style> |
5 #scaleMe { | 5 #scaleMe { |
6 width:100px; | 6 width:100px; |
7 height:200px; | 7 height:200px; |
8 background: yellow; | 8 background: yellow; |
9 } | 9 } |
10 </style> | 10 </style> |
11 </head> | 11 </head> |
12 <body onload="runRepaintAndPixelTest()"> | 12 <body onload="runRepaintAndPixelTest()"> |
13 <script> | 13 <script> |
| 14 window.outputRepaintRects = false; |
14 function repaintTest() { | 15 function repaintTest() { |
15 document.getElementById("scaleMe").style.height="100px"; | 16 document.getElementById("scaleMe").style.height="100px"; |
16 } | 17 } |
17 </script> | 18 </script> |
18 <div> | 19 <div> |
19 <img id="scaleMe" src="resources/circle-200px-none.svg"> | 20 <img id="scaleMe" src="resources/circle-200px-none.svg"> |
20 </div> | 21 </div> |
21 </body> | 22 </body> |
OLD | NEW |