OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <script src="resources/repaint.js"></script> | |
5 <script> | 4 <script> |
6 function repaintTest() | 5 function repaintTest() |
7 { | 6 { |
8 document.getElementById('resize-target').style.height = '200px'; | 7 document.getElementById('resize-target').style.height = '200px'; |
9 } | 8 } |
10 </script> | 9 </script> |
11 </head> | 10 </head> |
12 | 11 |
13 <body style="margin: 0; padding: 0; overflow: hidden;" onload="runRepaintTest()"
> | 12 <body style="margin: 0; padding: 0; overflow: hidden;" onload="repaintTest()"> |
14 <div id="resize-target" style="width: 400px; height: 400px; position: absolute
;"></div> | 13 <div id="resize-target" style="width: 400px; height: 400px; position: absolute
;"></div> |
15 | 14 |
16 <div style="width: 100px; height: 100px; background-color: green; position: ab
solute;"></div> | 15 <div style="width: 100px; height: 100px; background-color: green; position: ab
solute;"></div> |
17 </body> | 16 </body> |
18 </html> | 17 </html> |
OLD | NEW |