blob: 35515c3892116cc3f3368fb7fda9b6fbeb1a2e64 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<html xmlns="http://www.w3.org/1999/xhtml"><head>
<bindings xmlns="http://www.mozilla.org/xbl"><binding id="foo"><content><optgroup><span><children xmlns="http://www.mozilla.org/xbl"/></span></optgroup></content></binding></bindings>
<script>
<![CDATA[
function boom() { document.getElementById("a").appendChild(document.createElementNS("http://www.w3.org/1999/xhtml", "span")); }
window.addEventListener("load", boom, false);
]]>
</script></head>
<frameset style="-moz-binding: url("#foo");"><frame id="a"></frame></frameset>
</html>
|