blob: ab027972343491ae786c0639cbb6af5978b2b7b2 [file] [log] [blame]
<!doctype html>
<head>
<title>Test that module script compile -> V8 GC -> module script exec doesn't crash renderer</title>
<body>
<script>
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.waitUntilDone();
}
</script>
<script type="module">
%syntax error
</script>
<script>
gc();
window.requestAnimationFrame(() => {
if (window.testRunner)
testRunner.notifyDone();
});
</script>
<p>This test pass if no crash.