A user account is required in order to edit this wiki, but we've had to disable public user registrations due to spam.

To request an account, ask an autoconfirmed user on Chat (such as one of these permanent autoconfirmed members).

Component Model Strawman: Isolation

From WHATWG Wiki
Jump to navigation Jump to search

Overview

Loading a HTML Resource

The element registration and template definition are also done in a separate HTML. Effective markup vocabulary for the defining HTML is limited. Agents only recognize a head element as a child of the root element when the HTML document is loaded as required.


<html>
  <head>
    <element for="x-comment">..</element>
  </head>
</html>

The host element can load the html with element definition using a link element with its rel attribute set to component.


<html>
  <head>
    <link rel=”component” type=”text/html” href="comment.html">
  </head>
</html>