| <!DOCTYPE HTML> | |
| <html> | |
| <head> | |
| <script src="resources/repaint.js"></script> | |
| <script> | |
| function repaintTest() | |
| { | |
| document.getElementById("inner").style.width = "0"; | |
| } | |
| </script> | |
| </head> | |
| <body onload="runRepaintTest()"> | |
| <div style="float: left; overflow: hidden; width: 100px; height: 100px; background-color: green;"> | |
| <div id="inner" style="width: 100px; height: 100px; background-color: red;"></div> | |
| </div> | |
| </body> | |
| </html> |