blob: 7f81422a71585320c321018e22f545376651899a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<script>
function boom()
{
var input = document.createElement("input");
document.body.appendChild(input);
input.focus();
document.body.appendChild(input);
input.focus();
document.documentElement.removeAttribute("class");
}
</script>
</head>
<body onload="setTimeout(boom, 0);"></body>
</html>
|