<!DOCTYPE html>
<script src="empty.js?blocking"></script>
<script async blocking=render src="empty.js?async_blocking"></script>
<script type=module blocking=render src="empty.js?module_blocking"></script>
<script async type=module blocking=render src="empty.js?async_module_blocking"></script>
<script>
// Add a dynamic script with document.write, to check parser-inserted scripts
// without the preload scanner.
document.write('<script defer src="empty.js?docwrite_defer"><\/script>');
</script>
<body>
<script src="empty.js?in_body_parser_blocking"></script>
<script async src="empty.js?async"></script>
<script defer src="empty.js?defer"></script>
<script type=module src="empty.js?module"></script>
<script async type=module src="empty.js?async_module"></script>
</body>