Copyright © 2013 W3C© (MIT, ERCIM, Keio), All Rights Reserved. W3C liability, trademark and document use rules apply.
HTML Imports are a way to include and reuse HTML documents in other HTML documents.
This section describes the status of this document at the time of its publication. Other documents may supersede this document. A list of current W3C publications and the latest revision of this technical report can be found in the W3C technical reports index at http://www.w3.org/TR/.
This document was published by the Web Applications Working Group as an Editor's Draft. If you wish to make comments regarding this document, please send them to public-webapps@w3.org (subscribe, archives). All feedback is welcome.
Publication as an Editor's Draft does not imply endorsement by the W3C Membership. This is a draft document and may be updated, replaced or obsoleted by other documents at any time. It is inappropriate to cite this document as other than work in progress.
This document was produced by a group operating under the 5 February 2004 W3C Patent Policy. W3C maintains a public list of any patent disclosures made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains Essential Claim(s) must disclose the information in accordance with section 6 of the W3C Patent Policy.
All diagrams, examples, notes, are non-normative, as well as sections explicitly marked as non-normative. Everything else in this specification is normative.
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in the normative parts of this document are to be interpreted as described in RFC2119. For readability, these words do not appear in all uppercase letters in this specification.
Any point, at which a conforming UA must make decisions about the state or reaction to the state of the conceptual model, is captured as algorithm. The algorithms are defined in terms of processing equivalence. The processing equivalence is a constraint imposed on the algorithm implementers, requiring the output of the both UA-implemented and the specified algorithm to be exactly the same for all inputs.
This document relies on the following specifications:
HTML Imports, or just imports from here on, are HTML documents that are linked as external resources from another HTML document. The document that links to an import is called an import referrer. For any given import, an import referrer ancestor is its import referrer or any import referrer ancestor of its import referrer.
An import referrer which has its own browsing context is called a master document. Each import is associated with one master document: if the referrer of the import is a master document, it is the master document of the import. Otherwise, the master document of the import referrer is the master document of the import.
defaultView
with the master document.
(See Bug 23170.)
The URL of an import is called the import location.
In the import referrer, an import is represented as a Document
, called the imported document. The imported documents don't have browsing context.
The set of all imports associated with the master document forms an import map of the master document. The maps stores imports as its items with their import locations as keys. The import map is empty at beginning. New items are added to the map as import fetching algorithm specifies.
import
"To enable declaring imports in HTML, a new link type is added to HTML link types:
The import
keyword may be used with link
elements. This keyword creates an external resource link to an import.
The default type for resources given by the import
keyword is text/html
.
The link
element may have an async attribute. The async
attribute is a boolean attribute.
The appropriate time to fetch the resource is when the external resource link is created or when its element is inserted into a document, whichever happens last.
The import is fetched and applied regardless of the media
attribute of the link
matches the environment or not.
The following document has one import, located at /imports/heart.html:
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Human Being</title>
<link rel="import" href="/imports/heart.html">
</head>
<body>
<p>What is a body without a heart?</p>
</body>
</html>
HTMLLinkElement
Interface
partial interface HTMLLinkElement {
readonly attribute Document? import;
};
On getting, the import
attribute must return null, if:
link
does not represent an importlink
element is not in a Document
Otherwise, the attribute must return the imported document for the import, represented by the link
element.
The same object must be returned each time.
Here's how one could access the imported document, mentioned in the previous example:
var link = document.querySelector('link[rel=import]');
var heart = link.import;
// Access DOM of the document in /imports/heart.html
var pulse = heart.querySelector('div.pulse');
An import in the context of the Document
of an HTML parser or XML Parser is said to be an import that is blocking scripts if the element was created by that Document
's parser, or and the element is a link
of type import
when the element was created by the parser, and the link
is not marked as async, and the the import is yet to be completely loaded, and, the last time the event loop has reached step 1, the element was in that Document
, and the user agent hasn't given up on that import yet. A user agent may give up on an import at any time.
Giving up an import before it loads, even if the import eventually does still load, means that the script might end up operating with incorrect information. For example, if an import registers a custom element and a script relies on the availability of this element, the script will find that this element is unavailable if the user agent gives up early. Implementers have to balance the likelihood of a script using incorrect information with the performance impact of doing nothing while waiting for a slow network request to finish.
A Document
has an import that is blocking scripts if there is an import that is blocking scripts in the Document
's import dependent.
A Document
has no import that is blocking scripts if it does not have an import that is blocking scripts as defined in the previous paragraph.
The state of "has an import that is blocking scripts" can change each time an existing import is completely loaded or new import loading is started. HTML parser has changes to unblock it for each of such timings.
Document
Interfacedocument.open() method
Add following step as the first step of the definition:
InvalidStateError
exception if the Document is an import.document.write()
methodAdd following step as the first step of the definition:
InvalidStateError
exception if the Document is an import.document.close()
methodAdd following step as the first step of the definition:
InvalidStateError
exception if the Document is an import.Each document has an import link list, each of whose item is consist of link, the link
element and location, a URL.
Also, the item is optionally marked as branch.
The list is empty at beginning and the item is added as import request algorithm specifies.
An imported document has zero or more import ancestors. The import ancestor is a document. If the import link list of document A contains a branch item whose location points document B, A is a import ancestor of B. B is also called the import parent of the Document
. The import ancestor is transitive: If document C is a import ancestor of document B and document B is a import ancestor of document A, C is a import ancestor of document A.
An imported document also has one or more import predecessors. An import predecessor is a document. If the URL of document A is located before the URL of document B in the import link list of B's import parent, and the located link is marked as a branch, then A is import predecessor of B.
The import ancestor predecessors of document A is defined as follows: If document B is an import predecessor of document C, and C is an import ancestor of A, B is an import ancestor predecessors of A.
The Document
that is in either import ancestor predecessors or import predecessors of document A, or is linked from branch item of A's import link list, is the import dependent of A.
The import link list and the import dependent constrains the order of script execution in imports. It is intend to give a deterministic order of script execution which is defined by the order of link
element in each import. The edges of each node is ordered in terms of import link list. The import predecessors selection is aware of the order.
The linking structure of import link lists forms a directed graph. Each node of the graph is a document and its edge is a link. Branches are intended to form a spanning tree of the graph. This tree gives the deterministic order of the script execution.
In the figure,
The difference between the import referrer and the import parent is that import referrer reflects the state of the node tree and that the import parent is built by the algorithm described in this document.
After a link is added to the import link list, the update marking algorithm must been run with the master document. which is equivalent to running these steps:
When user agents attempt to obtain a linked import, they must also run the import request algorithm, which is equivalent to running these steps:
link
element that creates an external resource link to the import.All imports linked from documents that is the master document or the one in the import map must be fetched using the import fetching algorithm described below, instead of the one that HTML specifies to obtain a linked resouce.
The import fetching algorithm must be equivalent to running these steps:
link
element which makes the external resource link to the import.Document
, the document's address of which is LOCATIONEOF
characterThe loading attempt must be considered successful if IMPORT is not null on the algorithm completion, and failed otherwise.
Every import that is not marked as async delays the load event in the Document.
The link
element fires a simple event called load
for successful loading attempt. For failed attempt, it fires a simple event named error
.
As an import delays the load event, the Document
isn't completely loaded until loading attempts of all of its linked imports are finished.
Content Security Policy must restrict import loading through the script-src directive.
Each import must be restricted by the Content Security Policy of the master document. For example, if Content Security Header Field is sent to an import, the user agent must enforce the policy of the master document to the imported document.
Parsing behaviour of imports is defined as a set of changes to the HTML Parsing.
In step 15 of prepare a script algorithm, modify the last part of condition which begins with If element does not have a src
attribute to read:
... and the Document
of the HTML parser or XML parser that created the script
element has a style sheet that is blocking scripts or has an import that is blocking scripts
At the DOCTYPE part of section 12.2.5.4.1 The "initial" insertion mode, modify text if the document is not an iframe srcdoc document...
as follows
if the document is not an iframe src document nor an import...
In sub-condition named Otherwise of condition An end tag whose name is "script" in "text" insertion mode, modify step 3 to read:
Document
has a style sheet that is blocking scripts or has an import that is blocking scripts or the script's "ready to be parser-executed" flag is not set: spin the event loop until the parser's Document
has no style sheet that is blocking scripts and has no import that is blocking scripts and the script's "ready to be parser-executed" flag is set.Modify step 3 of steps that run following preparing the script
element to read:
Spin the event loop until the parser's Document
has no style sheet that is blocking scripts and has no import that is blocking scripts and the pending parsing-blocking script's "ready to be parser-executed" flag is set.
Add following condition to the list of Enabling and disabling scripting criteria:
Modify the definition of document.currentScript
as follows:
currentScript
attribute, on getting,
must return the value to which it was most recently initialized in the document or the import map of the document.
When the Document is created, the currentScript
must be initialized to null.
If the Document is an imported document, its currentScript
is always null.
The contents of the style
elements and
the external resources of the link
elements in imports must be considered as input sources of the style processing model of the master document.
Between declarations from different documents, the document order in terms of order of appearance is defined by comparing two elements x, whose owner document is Dx, and y, whose owner document is Dy, as follows:
link
element in Da that links to Dx or Dx's import referrer ancestor, and Ly, a link
that imports Dy respectivly. The x element wins if Lx wins, or y wins otehrwise.
link
in Dx which links to Dy or Dy's import referrer ancestor. If x wins over Ly it wins over y as well.
Here is an illustrative document order of an import tree.
In this example, the master document has two link elements which import B's import referrer ancestors. When comparing b1 and m2, b1 wins over m2 because the first link
, which is used to the comparison, appears before m2 in the master document.
The comparison uses the notion of import referrer ancestors instead of import ancestor. This implies that moving import link
through DOM mutation affect the ordering. It follows how style
elements and link
element for stylesheets work.
See Bug 24756.
Events in imports is defined as a set of changes to the HTML Events.
Modify the event handler content attribute's script creation criteria by expanding the first paragraph:
When an event handler content attribute is set, if the element is owned by a Document that is in a browsing context or in an import map, ...
David Hyatt developed XBL 1.0, and Ian Hickson co-wrote XBL 2.0. These documents provided tremendous insight into the problem of behavior attachment and greatly influenced this specification.
Alex Russell and his considerable forethought triggered a new wave of enthusiasm around the subject of behavior attachment and how it can be applied practically on the Web.
Dominic Cooney and Roland Steiner worked tirelessly to scope the problem within the confines of the Web platform and provided a solid foundation for this document.
The editor would also like to thank Alex Komoroske, Angelina Fabbro, Anne van Kesteren, Boris Zbarsky, Brian Kardell, Daniel Buchner, Edward O'Connor, Eric Bidelman, Erik Arvidsson, Elliott Sprehn, Gabor Krizsanits, Hayato Ito, James Simonsen, Jonas Sicking, Ken Shirriff, Neel Goyal, Olli Pettay, Rafael Weinstein, Scott Miles, Steve Orvell, Tab Atkins, William Chan, and William Chen for their comments and contributions to this specification.
This list is too short. There's a lot of work left to do. Please contribute by reviewing and filing bugs—and don't forget to ask the editor to add your name into this section.