I use cuzillion tool build a page:
<head>
  <script async></script>
</head>
<body>
   <img />
   <img />
   <img /> 
</body>  
there is only one script element in head, with async attribute and 2 second delay, 3 second to execute.
but the page load timeline in Chrome is:

when the script executing, it still block the browser render process?
But why? it shouldn't execute asynchronously?
However it doesn't block the parser:

 
    