Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: (os == 'android')
- Manifest: dom/base/crashtests/crashtests.list
<!DOCTYPE HTML>
<html class="reftest-wait">
<script>
  var win;
  function doIt() {
    if (!win) {
      win = window.open();
    }
    var doc = win.document;
    doc.open();
    doc.write('<script type="module" src="./module-with-syntax-error.js"></' + 'script>');
    doc.close();
  }
  doIt()
  setTimeout(() => {
      doIt();
      win.close();
      document.documentElement.removeAttribute("class");
  }, 100);
</script>
</html>