Bug 461810 - Video content menu should operate on .currentSrc, not .src. r=gavin
[wine-gecko.git] / content / base / crashtests / 354645-1.xul
blob3e3670ee0392d6e5db459ce3e882afca50d9f418
1 <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" onload="boom();" class="reftest-wait">
3 <script type="text/javascript">
5 var XUL_NS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
7 function boom()
9   var A = document.getElementById("A");
10   var B = document.createElementNS(XUL_NS, "tabs");
11   var C = document.createElementNS(XUL_NS, "hbox");
12   B.appendChild(C);
13   A.appendChild(B);
16 function remove(n)
18   n.parentNode.removeChild(n);
21 </script>
23 <hbox id="A" onselect="remove(event.originalTarget); document.documentElement.removeAttribute('class');"></hbox>
25 </window>