blob: 7e8dd47f812ccbfb021ea60809ed16b4059c7855 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<script>
function boom()
{
var z = document.createElement("legend");
document.documentElement.appendChild(z);
z.style.display = "table-column-group";
window.find("?");
z.focus();
}
</script>
</head>
<body onload="boom();"></body>
</html>
|