blob: 8465c3a1fc09a33588938e80863c26dfe4a0c8af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!DOCTYPE html>
<html>
<!--
Test interaction of dynamic module loading and synchronous XHR.
Load a module A that starts a dynamic import of module B which imports A, then
run a sync XHR at top level. The dynamic import should complete successfully
after the XHR has finished loading.
-->
<head>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
<script>
SimpleTest.waitForExplicitFinish();
</script>
<script type="module" src="./test_bug1788532_moduleA.mjs"></script>
</head>
</html>
|