blob: ff1c5051672d6de8c9bcf307ac53fa41600cd4d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<html>
<head>
<script>
function boom()
{
var a = document.createElementNS("http://www.w3.org/1999/xhtml", "datalist");
var b = document.createElementNS("http://www.w3.org/1999/xhtml", "option");
a.appendChild(b);
b.expando = a.options;
}
</script>
</head>
<body onload="boom();"></body>
</html>
|