summaryrefslogtreecommitdiffstats
path: root/dom/base/test/jsmodules/test_scriptNotParsedAsModule.html
blob: dbad1bc7227492e54ff280ec2d74f8d484ba01ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<meta charset=utf-8>
<title>Test classic script not parsed as module</title>
<script src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
<script>
  var wasRun = false;
  var hadSyntaxError = false;

  SimpleTest.waitForExplicitFinish();
  window.onerror = handleError;

  function handleError(message, url, line, column, error) {
    hadSyntaxError = error instanceof SyntaxError;
  }

  function testError() {
    ok(!wasRun, 'Check script was not run');
    ok(hadSyntaxError, 'Check that a SyntaxError was thrown');
    SimpleTest.finish();
  }
</script>
<script src="module_testSyntax.mjs"></script>
<body onload='testError()'></body>