blob: 320322b1406a33d5b69c74953538aefd0b8e5ee5 [file] [log] [blame]
<html>
<head>
<title>"autofocus" scrolling test</title>
<style>
p#test{ position:absolute; top:150% }
input { background:red }
input:focus { background:lime }
</style>
<script src="resources/common.js"></script>
<script language="JavaScript" type="text/javascript">
function log(message) {
document.getElementById("console").innerHTML += "<li>"+message+"</li>";
}
function test() {
if (window.testRunner)
testRunner.dumpAsText();
if (document.activeElement == document.getElementsByTagName("input")[0] &&
document.scrollingElement.scrollTop != 0)
log("SUCCESS");
else
log("FAILURE");
if (window.testRunner)
testRunner.notifyDone();
}
waitUntilLoadedAndAutofocused(function() { setTimeout(test, 0)});
</script>
</head>
<body>
<p id="test">This form control should have a green background: <input autofocus>
<hr>
<ol id="console"></ol>
</body>
</html>