mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-19 07:31:25 +00:00
22 lines
444 B
HTML
22 lines
444 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
var a = document.createElement("select");
|
|
var f = document.createElement("optgroup");
|
|
var g = document.createElement("optgroup");
|
|
a.appendChild(f);
|
|
g.appendChild(document.createElement("option"));
|
|
f.appendChild(g);
|
|
a.appendChild(document.createElement("option"));
|
|
document.body.appendChild(a);
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
<body onload="boom();"></body>
|
|
</html>
|