mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 15:15:23 +00:00
21 lines
320 B
HTML
21 lines
320 B
HTML
|
<html>
|
||
|
<head>
|
||
|
<script type="text/javascript">
|
||
|
|
||
|
function boom()
|
||
|
{
|
||
|
var o2 = document.createElement("option");
|
||
|
document.getElementById("o1").appendChild(o2);
|
||
|
o2.style.padding = "131072cm";
|
||
|
}
|
||
|
|
||
|
</script>
|
||
|
</head>
|
||
|
|
||
|
<body onload="boom();">
|
||
|
|
||
|
<select><option id="o1" style="height: 0cm;"></option></select>
|
||
|
|
||
|
</body>
|
||
|
</html>
|