2008-11-04 Anders Carlsson <andersca@apple.com>
[webkit/qt.git] / LayoutTests / fast / dom / resources / exception-no-frame-inline-script-crash-iframe.html
blob3df8f4e149cdfde1a4a3dfc1569a1c56d6ce2272
1 <script>
2 if (window.layoutTestController)
3 layoutTestController.dumpAsText();
5 function crash()
7 /* Ensure we have no frame when the exception is thrown. */
8 var iframe = parent.document.getElementById("iframe");
9 iframe.parentNode.removeChild(iframe);
11 /* Throw an exception. */
12 throw "crash";
15 crash();
16 </script>