blob: 8b15a1762abb64e01b5c28db0646182c862e7264 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!DOCTYPE html>
<meta charset=utf-8>
<title>Test error thrown when an import cannot be resolved</title>
<script src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
<script>
var hadTypeError = false;
SimpleTest.waitForExplicitFinish();
window.onerror = handleError;
function handleError(message, url, line, column, error) {
hadTypeError = error instanceof TypeError;
}
function testError() {
ok(hadTypeError, 'Check that a TypeError was thrown');
SimpleTest.finish();
}
</script>
<script type="module" src="module_badImport.mjs"></script>
<body onload='testError()'></body>
|