| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <script src="resources/text-based-repaint.js" type="text/javascript"></scrip
t> | 4 <script src="resources/text-based-repaint.js" type="text/javascript"></scrip
t> |
| 5 <script type="text/javascript"> | 5 <script type="text/javascript"> |
| 6 window.onload = function() { | 6 window.onload = function() { |
| 7 runRepaintTest(); | 7 runRepaintTest(); |
| 8 }; | 8 }; |
| 9 | 9 |
| 10 function repaintTest() { | 10 function repaintTest() { |
| 11 document.getElementById('target').style.visibility = 'visible'; | 11 document.getElementById('target').style.visibility = 'visible'; |
| 12 } | 12 } |
| 13 </script> | 13 </script> |
| 14 </head> | 14 </head> |
| 15 <body> | 15 <body> |
| 16 <div id="target" | 16 <div id="target" |
| 17 style="will-change: transform; | 17 style="will-change: transform; |
| 18 visibility:hidden; | 18 visibility:hidden; |
| 19 position: absolute; | 19 position: absolute; |
| 20 top: 200px; left: 200px; | 20 top: 200px; left: 200px; |
| 21 width: 200px; height: 200px; | 21 width: 200px; height: 200px; |
| 22 background-color: redl "></div> | 22 background-color: redl "></div> |
| 23 </body> | 23 </body> |
| 24 </html> | 24 </html> |
| OLD | NEW |