| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <head> | 2 <head> |
| 3 <script src="../../fast/repaint/resources/text-based-repaint.js" type="t
ext/javascript"></script> | 3 <script src="../../fast/repaint/resources/text-based-repaint.js" type="t
ext/javascript"></script> |
| 4 <script> | 4 <script> |
| 5 window.outputRepaintRects = false; |
| 5 function repaintTest() { | 6 function repaintTest() { |
| 6 document.getElementById("svg").style.overflow="visible"; | 7 document.getElementById("svg").style.overflow="visible"; |
| 7 } | 8 } |
| 8 </script> | 9 </script> |
| 9 <style> | 10 <style> |
| 10 div { | 11 div { |
| 11 height:100px; width:100px; | 12 height:100px; width:100px; |
| 12 } | 13 } |
| 13 div + div { background: red; } | 14 div + div { background: red; } |
| 14 </style> | 15 </style> |
| 15 </head> | 16 </head> |
| 16 <body onload="runRepaintAndPixelTest()"> | 17 <body onload="runRepaintAndPixelTest()"> |
| 17 <div> | 18 <div> |
| 18 <svg id="svg" height="100" width="100" viewbox="0 0 100 100"> | 19 <svg id="svg" height="100" width="100" viewbox="0 0 100 100"> |
| 19 <rect y="100" width="100" height="100" fill="green"/> | 20 <rect y="100" width="100" height="100" fill="green"/> |
| 20 </svg> | 21 </svg> |
| 21 </div> | 22 </div> |
| 22 <div></div> | 23 <div></div> |
| 23 </body> | 24 </body> |
| OLD | NEW |