blob: 15fca851404e3ba7c7232613efe0c7c08c345908 [file] [log] [blame]
<script>
if (window.testRunner)
testRunner.dumpAsText();
function crash()
{
/* Ensure we have no frame when the exception is thrown. */
var iframe = parent.document.getElementById("iframe");
iframe.parentNode.removeChild(iframe);
/* Throw an exception. */
throw "crash";
}
crash();
</script>