blob: 81588c68a5bf40a910c489a26a257cf4852152a3 [file] [log] [blame]
<!DOCTYPE HTML>
<html>
<head>
<script src="../../../resources/js-test-pre.js"></script>
</head>
<body>
<script>
description('Test import simple.');
// Module will be executed asynchronously.
window.jsTestIsAsync = true;
</script>
<script>
</script>
<script src="../../../resources/js-test-post.js"></script>
<script>
(async function() {
debug('Module is not executed yet.');
await import(`./resources/module-src-simple.js`);
finishJSTest();
}());
</script>
</body>
</html>