mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 08:35:26 +00:00
20 lines
303 B
HTML
20 lines
303 B
HTML
|
<!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>
|