blob: d6e28881af0917ec654f10abcd28051b5fc11a2c [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
<script src="../../../resources/js-test.js"></script>
</head>
<body>
Checks that inline scripts are not async.
<div id="console"></div>
<script async>
debug(1);
</script>
<script>
debug(2);
</script>
</body>
</html>