blob: e6fc91127e521f3150171036e4556edc6fe628e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<svg xmlns="http://www.w3.org/2000/svg">
<foreignObject width="500" height="500" style="-moz-appearance: checkbox;">
<option xmlns="http://www.w3.org/1999/xhtml"></option>
</foreignObject>
<script>
<![CDATA[
window.addEventListener("load", function() {
document.getElementsByTagName("option")[0].appendChild(document.createTextNode("Option 1"));
}, false);
]]>
</script>
</svg>
|