blob: 3df8f4e149cdfde1a4a3dfc1569a1c56d6ce2272 [file] [log] [blame]
<script>
if (window.layoutTestController)
layoutTestController.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>