On x86 compilers without fastcall, simulate it when invoking traces and un-simulate...
[wine-gecko.git] / content / events / crashtests / 422009-1.xhtml
blob1bf37906df1fa1635bdfd7a0ffffcd6741cfdae6
1 <html xmlns="http://www.w3.org/1999/xhtml">
2 <head>
4 <bindings xmlns="http://www.mozilla.org/xbl">
5 <binding id="g">
6 <implementation>
7 <constructor>
8 throw 3;
9 </constructor>
10 </implementation>
11 </binding>
12 </bindings>
14 <script type="text/javascript">
16 function boom()
18 var HTML_NS = "http://www.w3.org/1999/xhtml";
19 var span = document.createElementNS(HTML_NS, 'span');
20 span.style.MozBinding = "url(#g)";
21 document.removeChild(document.documentElement)
22 var w = document.createElementNS(HTML_NS, 'body');
23 w.setAttribute('onload', "/");
24 document.appendChild(span);
27 </script>
28 </head>
30 <body onload="boom();"></body>
31 </html>