- From: <bugzilla@jessica.w3.org>
- Date: Fri, 25 Apr 2014 23:14:04 +0000
- To: public-webapps-bugzilla@w3.org
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: annevk@annevk.nl
Reporter: sorvell@chromium.org
QA Contact: public-webapps-bugzilla@w3.org
CC: mike@w3.org, www-dom@w3.org
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 the QA Contact for the bug.
Received on Friday, 25 April 2014 23:14:06 UTC