| OLD | NEW |
| 1 <html style="background-color: green;"> | 1 <!DOCTYPE html> |
| 2 <head> | 2 <html style="background-color: blue;"> |
| 3 <script src="resources/text-based-repaint.js" type="text/javascript" charset="ut
f-8"></script> | 3 <head> |
| 4 <script type="text/javascript"> | 4 <script type="text/javascript"> |
| 5 function repaintTest() | 5 window.onload = function() { |
| 6 { | 6 if (window.eventSender) |
| 7 if (window.eventSender) | 7 window.eventSender.setPageScaleFactor(0.25, 0, 0); |
| 8 window.eventSender.setPageScaleFactor(0.25, 0, 0); | 8 } |
| 9 } | |
| 10 </script> | 9 </script> |
| 11 </head> | 10 </head> |
| 12 <body style="margin:0;" onload="runRepaintTest();"> | 11 <body style="margin:0; overflow: hidden; width: 4000px; height: 4000px"> |
| 13 <div style="background-color: green; width: 100%; height: 100px;"></div> | 12 <div style="background-color: green; width: 100vw; height: 100px;"></div> |
| 14 </body> | 13 </body> |
| 15 </html> | 14 </html> |
| OLD | NEW |