| <head> | |
| <script type="text/javascript"> | |
| if (window.testRunner) | |
| testRunner.waitUntilDone(); | |
| function runTest() | |
| { | |
| document.getElementById("q").style.height = "200px"; | |
| if (window.testRunner) | |
| testRunner.notifyDone(); | |
| } | |
| </script> | |
| </head> | |
| <body onload="setTimeout(runTest, 0);"> | |
| <div style="position: absolute; top: 50px; left: 0; overflow: overlay; width: 100px; height: 100px; border: solid"> | |
| <div id="q" style="position: absolute; top: 0; height: 50px; width: 10px;"></div> | |
| </div> | |
| </body> |