18 lines
460 B
HTML
18 lines
460 B
HTML
<html class="reftest-wait">
|
|
<head>
|
|
<script type="text/javascript">
|
|
function finishTest() {
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
function runTest() {
|
|
var field = document.getElementById('field');
|
|
field.focus();
|
|
field.select();
|
|
setTimeout(finishTest, 0);
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="runTest()">
|
|
<input id="field" type="text" value="1234">
|
|
</body>
|
|
</html>
|