| <script type="text/javascript"> | |
| if (window.testRunner) | |
| testRunner.waitUntilDone(); | |
| function runTest() | |
| { | |
| document.getElementById("target").firstChild.data = "a"; | |
| if (window.testRunner) | |
| testRunner.notifyDone(); | |
| } | |
| </script> | |
| <body onload="setTimeout(runTest, 0)"> | |
| <span style="position: relative; top: 80px;"> | |
| <div id="target" style="display: inline-block; width: 100px; height: 100px; overflow: hidden; font-family: ahem; font-size: 100px; background: red; color: green;">p</div> | |
| </span> |