Skip to content

Commit

Permalink
Merge pull request #9 from dglazkov/missing-created-callback
Browse files Browse the repository at this point in the history
[Custom]: Missing created callback should not prevent other callbacks
  • Loading branch information
dglazkov committed May 12, 2014
2 parents 03f1382 + 529d311 commit 61093a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/custom/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ <h3 id="types-of-callbacks">Types of Callbacks</h3>
<dd>This callback is invoked after <a href="#dfn-custom-element">custom element</a> instance is created and its <a href="#dfn-element-definition">definition</a> is <a href="#dfn-element-registration">registered</a>. The actual timing of this callback is defined further in this specification.</dd>
<dd>The <a href="#dfn-custom-element-prototype">custom element prototype</a> <strong>must</strong> be <a href="#dfn-set-prototype">set</a> just prior to invoking callback.</dd>
<dd>For the duration of this callback invocation, the <a href="#dfn-element-is-being-created-flag">element is being created</a> flag <strong>must</strong> be set to <strong>true</strong>. In all other cases, the flag <strong>must</strong> be set to <strong>false</strong>.</dd>
<dd>All other callbacks <strong>must not</strong> be enqueued until after the <a href="#dfn-created-callback">created</a> callback's invocation had started.</dd>
<dd>If the <a href="#dfn-created-callback">created</a> callback exists for an element, all other callbacks <strong>must not</strong> be enqueued until after this <a href="#dfn-created-callback">created</a> callback's invocation had started.</dd>
<dt><dfn id="dfn-attached-callback">attached</dfn></dt>
<dd>Unless specified otherwise, this callback <strong>must</strong> be <a href="#dfn-enqueue-lifecycle-callback">enqueued</a> whenever <a href="#dfn-custom-element">custom element</a> is <a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/infrastructure.html#insert-an-element-into-a-document">inserted into a document</a> <em>and</em> this <a href="http://dom.spec.whatwg.org/#concept-document">document</a> has a <a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/browsers.html#browsing-context">browsing context</a>.</dd>
<dt><dfn id="dfn-detached-callback">detached</dfn></dt>
Expand Down

0 comments on commit 61093a7

Please sign in to comment.