Skip to content

Commit

Permalink
Merge pull request #2 from dglazkov/namespaces
Browse files Browse the repository at this point in the history
Namespaces
  • Loading branch information
dglazkov committed May 8, 2014
2 parents 8684e5b + 69c6938 commit 56e066d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions spec/custom/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -336,11 +336,11 @@ <h3 id="types-of-callbacks">Types of Callbacks</h3>
<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>'s <a href="http://dom.spec.whatwg.org/#concept-attribute">attribute</a> is <a href="http://dom.spec.whatwg.org/#attribute-is-added">added</a>, <a href="http://dom.spec.whatwg.org/#attribute-is-changed">changed</a> or <a href="http://dom.spec.whatwg.org/#attribute-is-removed">removed</a>. Depending on the type of <a href="http://dom.spec.whatwg.org/#concept-attribute">attribute</a> modification, the following additional strings are added to the queue item:
<dl>
<dt><a href="http://dom.spec.whatwg.org/#attribute-is-added">attribute is set</a></dt>
<dd><a href="http://dom.spec.whatwg.org/#concept-attribute-name">attribute name</a>, <strong>null</strong> and new <a href="http://dom.spec.whatwg.org/#concept-attribute-value">attribute value</a></dd>
<dd><a href="http://dom.spec.whatwg.org/#concept-attribute-name">attribute name</a>, <strong>null</strong>, new <a href="http://dom.spec.whatwg.org/#concept-attribute-value">attribute value</a>, and the <a href="http://dom.spec.whatwg.org/#concept-attribute-namespace">attribute namespace</a>.</dd>
<dt><a href="http://dom.spec.whatwg.org/#attribute-is-changed">attribute is changed</a></dt>
<dd><a href="http://dom.spec.whatwg.org/#concept-attribute-name">attribute name</a>, old <a href="http://dom.spec.whatwg.org/#concept-attribute-value">attribute value</a> and new <a href="http://dom.spec.whatwg.org/#concept-attribute-value">attribute value</a></dd>
<dd><a href="http://dom.spec.whatwg.org/#concept-attribute-name">attribute name</a>, old <a href="http://dom.spec.whatwg.org/#concept-attribute-value">attribute value</a>, new <a href="http://dom.spec.whatwg.org/#concept-attribute-value">attribute value</a>, and the <a href="http://dom.spec.whatwg.org/#concept-attribute-namespace">attribute namespace</a>.</dd>
<dt><a href="http://dom.spec.whatwg.org/#attribute-is-removed">attribute is removed</a>
<dd><a href="http://dom.spec.whatwg.org/#concept-attribute-name">attribute name</a>, old <a href="http://dom.spec.whatwg.org/#concept-attribute-value">attribute value</a> and <strong>null</strong></dd>
<dd><a href="http://dom.spec.whatwg.org/#concept-attribute-name">attribute name</a>, old <a href="http://dom.spec.whatwg.org/#concept-attribute-value">attribute value</a>, <strong>null</strong>, and the <a href="http://dom.spec.whatwg.org/#concept-attribute-namespace">attribute namespace</a>.</dd>
</dl>
</dl>

Expand Down

0 comments on commit 56e066d

Please sign in to comment.