2025-03-18 15:28:35 -03:00
|
|
|
<!DOCTYPE html>
|
2024-11-24 18:37:28 -03:00
|
|
|
<script src="../include.js"></script>
|
|
|
|
|
<script>
|
|
|
|
|
asyncTest(async done => {
|
|
|
|
|
const shadowRealm = new ShadowRealm();
|
|
|
|
|
const promise = shadowRealm.importValue("../../data/external-module.mjs", "foo");
|
|
|
|
|
const value = await promise;
|
|
|
|
|
println(value);
|
|
|
|
|
done();
|
|
|
|
|
});
|
|
|
|
|
</script>
|