blob: a5e67ad018f6484b8c8b71dc1134d4bd5a8b0e78 [file] [log] [blame]
<!DOCTYPE HTML>
<html>
<head>
<script src="../../../resources/js-test-pre.js"></script>
</head>
<body>
<script>
description('Test nomodule prevents execution of classic script.');
window.executed = false;
</script>
<script nomodule src="./resources/module-src-simple.js"></script>
<script>
shouldBeFalse(`executed`);
</script>
<script src="../../../resources/js-test-post.js"></script>
</body>
</html>