[Bug 25470] New: [imports]: improve description of async to clarify execution order

[email protected]
Newsgroups gmane.comp.web.dom.general
Message-ID <[email protected]/Bugs/Public/>
https://www.w3.org/Bugs/Public/show_bug.cgi?id=25470

            Bug ID: 25470
           Summary: [imports]: improve description of async to clarify
                    execution order
           Product: WebAppsWG
           Version: unspecified
          Hardware: PC
                OS: All
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DOM
          Assignee: [email protected]
          Reporter: [email protected]
        QA Contact: [email protected]
                CC: [email protected], [email protected]
            Blocks: 20683

The spec should make it more clear that imports marked with async will not
delay execution (of scripts, stylesheets, or custom element upgrades) due to
any other async imports.

<link rel="import" href="a.html" async>
<link rel="import" href="b.html">
<link rel="import" href="c.html">
<link rel="import" href="d.html" async>

The only guarantee in the above setup is that 'b.html' is executed before
'c.html'. The async imports 'a.html' and 'd.html' may execute in any order with
respect to each other and other non-async imports.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.