gecko/layout/reftests/reftest-sanity/needs-focus.html
Chris Jones 8991442744 Rollup of bug 615386, parts 1-6. Teach the reftest harness about <browser remote>. r=dbaron,roc,ted a=a
--HG--
rename : layout/tools/reftest/reftest.js => layout/tools/reftest/reftest-content.js
2011-02-03 13:54:10 -06:00

15 lines
318 B
HTML

<!DOCTYPE html>
<html class="reftest-wait">
<script type="text/javascript">
function focusInput() {
document.getElementById('i').focus();
}
function done() {
document.documentElement.className = '';
}
</script>
<body onload="focusInput();">
<input type="text" id="i" onfocus="done();">
</body>
</html>