<!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> | |
window.executed = true; | |
testFailed("error"); | |
</script> | |
<script> | |
shouldBeFalse(`executed`); | |
</script> | |
<script src="../../../resources/js-test-post.js"></script> | |
</body> | |
</html> |