chromium/third_party/blink/web_tests/fast/dom/HTMLScriptElement/async-inline-script.html

<!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>