blob: 1e89cbb08b69bafe2185e26d8a5ad012293ed957 [file] [log] [blame]
<!DOCTYPE html>
<html>
<body>
<div style="display: inline; position: relative;">
<input type="text" id="one"><br>
<input type="text" id="two">
<div style="position: absolute"></div>
</div>
<script>
if (window.testRunner)
testRunner.waitUntilDone();
function finish() {
one.value = "One";
two.value = "Two";
if (window.testRunner)
testRunner.notifyDone();
}
setTimeout("finish()", 0);
</script>
</body>
</html>