mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-05-28 02:18:54 +00:00
19 lines
465 B
HTML
19 lines
465 B
HTML
<!DOCTYPE html>
|
|
<meta charset=utf-8>
|
|
<title>Test cyclic module imports</title>
|
|
<script type="application/javascript" src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
|
|
<script>
|
|
var result;
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
function testLoaded() {
|
|
SimpleTest.finish();
|
|
}
|
|
</script>
|
|
<script type="module">
|
|
import { func1 } from "./module_cyclic1.js";
|
|
ok(func1(5, "") == "12312");
|
|
</script>
|
|
<body onload='testLoaded()'></body>
|