blob: fe867dfa0bb0e922fc3b3e02838b4995157c13b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<html class="reftest-wait">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body onload="start()">
<input type="text" style="text-align:right; border-width:0;">
<script>
function start() {
var input = document.querySelector("input");
input.focus();
document.documentElement.removeAttribute("class");
}
</script>
</body>
</html>
|