[html5] r1486 - /
whatwg at whatwg.org
whatwg at whatwg.org
Thu Apr 24 01:58:58 PDT 2008
Author: ianh
Date: 2008-04-24 01:58:57 -0700 (Thu, 24 Apr 2008)
New Revision: 1486
Modified:
index
source
Log:
[aow] (2) Revamp tabindex=''; fix a bunch of uses of the word 'reflect' to be properly marked up.
Modified: index
===================================================================
--- index 2008-04-23 07:24:25 UTC (rev 1485)
+++ index 2008-04-24 08:58:57 UTC (rev 1486)
@@ -25,7 +25,7 @@
<h1 id=html-5>HTML 5</h1>
- <h2 class="no-num no-toc" id=working>Working Draft — 23 April 2008</h2>
+ <h2 class="no-num no-toc" id=working>Working Draft — 24 April 2008</h2>
<p>You can take part in this work. <a
href="http://www.whatwg.org/mailing-list">Join the working group's
@@ -6932,56 +6932,98 @@
<h5 id=sequential><span class=secno>3.5.2.2. </span>Sequential focus
navigation</h5>
- <p class=issue>This section on the <code>tabindex</code> attribute needs to
- be checked for backwards-compatibility.
-
<p>The <dfn id=tabindex title=attr-tabindex><code>tabindex</code></dfn>
- attribute specifies the relative order of elements for the purposes of
- sequential focus navigation. The name "tab index" comes from the common
- use of the "tab" key to navigate through the focusable elements. The term
- "tabbing" refers to moving forward through the focusable elements.
+ content attribute specifies whether the element is focusable, whether it
+ can be reached using sequential focus navigation, and the relative order
+ of the element for the purposes of sequential focus navigation. The name
+ "tab index" comes from the common use of the "tab" key to navigate through
+ the focusable elements. The term "tabbing" refers to moving forward
+ through the focusable elements that can be reached using sequential focus
+ navigation.
<p>The <code title=attr-tabindex><a href="#tabindex">tabindex</a></code>
attribute, if specified, must have a value that is a <a
href="#valid0">valid integer</a>.
<p>If the attribute is specified, it must be parsed using the <a
- href="#rules0">rules for parsing integers</a>. If parsing the value
- returns an error, the attribute is ignored for the purposes of focus
- management (as if it wasn't specified).
+ href="#rules0">rules for parsing integers</a>. The attribute's values have
+ the following meanings:
- <p>A positive integer or zero specifies the index of the element in the
- current scope's tab order. Elements with the same index are sorted in <a
- href="#tree-order">tree order</a> for the purposes of tabbing.
+ <dl>
+ <dt>If the attribute is omitted or parsing the value returns an error
- <p id=negative-tabindex>A negative integer specifies that the element
- should be removed from the tab order. If the element does normally take
- focus, it may still be focused using other means (e.g. it could be focused
- by a click).
+ <dd>
+ <p>The user agent should follow platform conventions to determine if the
+ element is to be focusable and, if so, whether the element can be
+ reached using sequential focus navigation, and if so, what its relative
+ order should be.</p>
- <p>If the attribute is absent (or invalid), then the user agent must treat
- the element as if it had the value 0 or the value −1, based on
- platform conventions.
+ <dt id=negative-tabindex>If the value is a negative integer
- <p class=example>For example, a user agent might default
- <code>textarea</code> elements to 0, and <code>button</code> elements to
- −1, making text fields part of the tabbing cycle but buttons not.
+ <dd>
+ <p>The user agent must allow the element to be focused, but should not
+ allow the element to be reached using sequential focus navigation.</p>
- <p>When an element that does not normally take focus (i.e. whose default
- value would be −1) has the <code title=attr-tabindex><a
- href="#tabindex">tabindex</a></code> attribute specified with a positive
- value, then it should be added to the tab order and should be made
- focusable. When focused, the element matches the CSS <code>:focus</code>
- pseudo-class and key events are dispatched on that element in response to
- keyboard input.
+ <dt>If the value is a zero
+ <dd>
+ <p>The user agent must allow the element to be focused, should allow the
+ element to be reached using sequential focus navigation, and should
+ follow platform conventions to determine the element's relative order.</p>
+
+ <dt>If the value is greater than zero
+
+ <dd>
+ <p>The user agent must allow the element to be focused, should allow the
+ element to be reached using sequential focus navigation, and should
+ place the element in the sequential focus navigation order so that it
+ is:</p>
+
+ <ul>
+ <li>before any focusable element whose <code title=attr-tabindex><a
+ href="#tabindex">tabindex</a></code> attribute has been omitted or
+ whose value, when parsed, returns an error,
+
+ <li>before any focusable element whose <code title=attr-tabindex><a
+ href="#tabindex">tabindex</a></code> attribute has a value equal to or
+ less than zero,
+
+ <li>after any element whose <code title=attr-tabindex><a
+ href="#tabindex">tabindex</a></code> attribute has a value greater than
+ zero but less than the value of the <code title=attr-tabindex><a
+ href="#tabindex">tabindex</a></code> attribute on the element,
+
+ <li>after any element whose <code title=attr-tabindex><a
+ href="#tabindex">tabindex</a></code> attribute has a value equal to the
+ value of the <code title=attr-tabindex><a
+ href="#tabindex">tabindex</a></code> attribute on the element but that
+ is earlier in the document in <a href="#tree-order">tree order</a> than
+ the element,
+
+ <li>before any element whose <code title=attr-tabindex><a
+ href="#tabindex">tabindex</a></code> attribute has a value equal to the
+ value of the <code title=attr-tabindex><a
+ href="#tabindex">tabindex</a></code> attribute on the element but that
+ is later in the document in <a href="#tree-order">tree order</a> than
+ the element, and
+
+ <li>before any element whose <code title=attr-tabindex><a
+ href="#tabindex">tabindex</a></code> attribute has a value greater than
+ the value of the <code title=attr-tabindex><a
+ href="#tabindex">tabindex</a></code> attribute on the element.
+ </ul>
+ </dl>
+
+ <p>When an element is focused, the element matches the CSS
+ <code>:focus</code> pseudo-class and key events are dispatched on that
+ element in response to keyboard input.
+
<p>The <dfn id=tabindex0 title=dom-tabIndex><code>tabIndex</code></dfn> DOM
- attribute reflects the value of the <code title=attr-tabIndex><a
- href="#tabindex">tabIndex</a></code> content attribute. If the attribute
- is not present (or has an invalid value) then the DOM attribute must
- return the UA's default value for that element, which will be either 0
- (for elements in the tab order) or −1 (for elements not in the tab
- order).</p>
+ attribute must <a href="#reflect">reflect</a> the value of the <code
+ title=attr-tabIndex><a href="#tabindex">tabIndex</a></code> content
+ attribute. If the attribute is not present, or parsing its value returns
+ an error, then the DOM attribute must return 0 for elements that are
+ focusable and −1 for elements that are not focusable.</p>
<!--XXX
<h5>The <dfn><code>DocumentFocus</code></dfn> interface</h5>
@@ -7719,9 +7761,9 @@
title=dom-meta-content><code>content</code></dfn> must <a
href="#reflect">reflect</a> the respective content attributes of the same
name. The DOM attribute <dfn id=httpequiv
- title=dom-meta-httpEquiv><code>httpEquiv</code></dfn> must reflect the
- content attribute <code title=attr-meta-http-equiv><a
- href="#http-equiv0">http-equiv</a></code>.
+ title=dom-meta-httpEquiv><code>httpEquiv</code></dfn> must <a
+ href="#reflect">reflect</a> the content attribute <code
+ title=attr-meta-http-equiv><a href="#http-equiv0">http-equiv</a></code>.
<h5 id=standard><span class=secno>3.7.5.1. </span>Standard metadata names</h5>
@@ -9847,8 +9889,8 @@
href="#blockquote">blockquote</a></code> element.
<p>The <dfn id=cite0 title=dom-quote-cite><code>cite</code></dfn> DOM
- attribute <code>reflects</code> the element's <code title="">cite</code>
- content attribte.
+ attribute must <a href="#reflect">reflect</a> the element's <code
+ title="">cite</code> content attribte.
<p class=note>The best way to represent a conversation is not with the
<code><a href="#cite2">cite</a></code> and <code><a
@@ -11620,9 +11662,9 @@
<p>The <dfn id=max0 title=dom-progress-max><code>max</code></dfn> and <dfn
id=value2 title=dom-progress-value><code>value</code></dfn> DOM attributes
- must reflect the elements' content attributes of the same name. When the
- relevant content attributes are absent, the DOM attributes must return
- zero. The value parsed from the <code><a
+ must <a href="#reflect">reflect</a> the elements' content attributes of
+ the same name. When the relevant content attributes are absent, the DOM
+ attributes must return zero. The value parsed from the <code><a
href="#textcontent">textContent</a></code> never affects the DOM values.
<p class=big-issue>Would be cool to have the <code
@@ -12016,10 +12058,10 @@
title=dom-meter-value><code>value</code></dfn>, <dfn id=low0
title=dom-meter-low><code>low</code></dfn>, <dfn id=high0
title=dom-meter-high><code>high</code></dfn>, and <dfn id=optimum0
- title=dom-meter-optimum><code>optimum</code></dfn> DOM attributes must
- reflect the elements' content attributes of the same name. When the
- relevant content attributes are absent, the DOM attributes must return
- zero. The value parsed from the <code><a
+ title=dom-meter-optimum><code>optimum</code></dfn> DOM attributes must <a
+ href="#reflect">reflect</a> the elements' content attributes of the same
+ name. When the relevant content attributes are absent, the DOM attributes
+ must return zero. The value parsed from the <code><a
href="#textcontent">textContent</a></code> never affects the DOM values.
<p class=big-issue>Would be cool to have the <code title=dom-meter-value><a
@@ -12862,10 +12904,11 @@
};</pre>
<p>The <dfn id=cite4 title=dom-mod-cite><code>cite</code></dfn> DOM
- attribute must reflect the element's ><code title=attr-mod-cite><a
- href="#cite3">cite</a></code> content attribute. The <dfn id=datetime2
- title=dom-mod-datetime><code>dateTime</code></dfn> DOM attribute must
- reflect the element's <code title="">datetime</code> content attribute.
+ attribute must <a href="#reflect">reflect</a> the element's ><code
+ title=attr-mod-cite><a href="#cite3">cite</a></code> content attribute.
+ The <dfn id=datetime2 title=dom-mod-datetime><code>dateTime</code></dfn>
+ DOM attribute must <a href="#reflect">reflect</a> the element's <code
+ title="">datetime</code> content attribute.
<h4 id=edits0><span class=secno>3.11.4 </span>Edits and paragraphs</h4>
@@ -14478,8 +14521,9 @@
a URI (or IRI).
<p>The <dfn id=poster0 title=dom-video-poster><code>poster</code></dfn> DOM
- attribute must reflect the <code title=attr-video-poster><a
- href="#poster">poster</a></code> content attribute.
+ attribute must <a href="#reflect">reflect</a> the <code
+ title=attr-video-poster><a href="#poster">poster</a></code> content
+ attribute.
<p>The <dfn id=videowidth
title=dom-video-videoWidth><code>videoWidth</code></dfn> DOM attribute
@@ -19705,8 +19749,8 @@
id=height4 title=dom-dim-height><code>height</code></dfn> DOM attributes
on the <code><a href="#embed">embed</a></code>, <code><a
href="#object">object</a></code>, and <code><a
- href="#video1">video</a></code> elements must reflect the content
- attributes of the same name.
+ href="#video1">video</a></code> elements must <a
+ href="#reflect">reflect</a> the content attributes of the same name.
<h3 id=tabular><span class=secno>3.13 </span>Tabular data</h3>
@@ -22261,7 +22305,8 @@
element? -->
<p>The <dfn id=src12 title=dom-event-source-src><code>src</code></dfn> DOM
- attribute must reflect the content attribute of the same name.
+ attribute must <a href="#reflect">reflect</a> the content attribute of the
+ same name.
<h3 id=interactive-elements><span class=secno>3.16 </span>Interactive
elements</h3>
@@ -25592,13 +25637,13 @@
<p>The <dfn id=condition0
title=dom-rule-condition><code>condition</code></dfn> DOM attribute must
- reflect the <code title=attr-rule-condition><a
+ <a href="#reflect">reflect</a> the <code title=attr-rule-condition><a
href="#condition">condition</a></code> content attribute.
<p>The <dfn id=mode0 title=dom-rule-mode><code>mode</code></dfn> and <dfn
id=modelist title=dom-rule-modeList><code>modeList</code></dfn> DOM
- attributes must reflect the <code title=attr-rule-mode><a
- href="#mode">mode</a></code> content attribute.
+ attributes must <a href="#reflect">reflect</a> the <code
+ title=attr-rule-mode><a href="#mode">mode</a></code> content attribute.
<h4 id=the-nest><span class=secno>3.17.4 </span>The <dfn
id=nest><code>nest</code></dfn> element</h4>
@@ -25655,12 +25700,13 @@
when looking at the rules in the data template.
<p>The <dfn id=filter0 title=dom-nest-filter><code>filter</code></dfn> DOM
- attribute must reflect the <code title=attr-nest-filter><a
- href="#filter">filter</a></code> content attribute.
+ attribute must <a href="#reflect">reflect</a> the <code
+ title=attr-nest-filter><a href="#filter">filter</a></code> content
+ attribute.
<p>The <dfn id=mode2 title=dom-nest-mode><code>mode</code></dfn> DOM
- attribute must reflect the <code title=attr-nest-mode><a
- href="#mode1">mode</a></code> content attribute.
+ attribute must <a href="#reflect">reflect</a> the <code
+ title=attr-nest-mode><a href="#mode1">mode</a></code> content attribute.
<h4 id=global0><span class=secno>3.17.5 </span>Global attributes for data
templates</h4>
@@ -25679,8 +25725,9 @@
href="#datatemplate0">datatemplate</a></code> element.
<p>The <dfn id=template0 title=dom-template><code>template</code></dfn> DOM
- attribute must reflect the <code title=attr-template><a
- href="#template">template</a></code> content attribute.
+ attribute must <a href="#reflect">reflect</a> the <code
+ title=attr-template><a href="#template">template</a></code> content
+ attribute.
<p>The <dfn id=ref title=attr-ref><code>ref</code></dfn> attribute may be
specified on any element on which the <code title=attr-template><a
@@ -25695,8 +25742,8 @@
That element is then used as the root node of the data for the template.
<p>The <dfn id=ref0 title=dom-ref><code>ref</code></dfn> DOM attribute must
- reflect the <code title=attr-ref><a href="#ref">ref</a></code> content
- attribute.
+ <a href="#reflect">reflect</a> the <code title=attr-ref><a
+ href="#ref">ref</a></code> content attribute.
<p>The <dfn id=registrationmark
title=attr-registrationmark><code>registrationmark</code></dfn> attribute
@@ -25713,7 +25760,8 @@
<p>The <dfn id=registrationmark0
title=dom-registrationMark><code>registrationMark</code></dfn> DOM
- attribute must reflect the <code title=attr-registrationmark><a
+ attribute must <a href="#reflect">reflect</a> the <code
+ title=attr-registrationmark><a
href="#registrationmark">registrationmark</a></code> content attribute.
<h4 id=processing1><span class=secno>3.17.6 </span>Processing model</h4>
Modified: source
===================================================================
--- source 2008-04-23 07:24:25 UTC (rev 1485)
+++ source 2008-04-24 08:58:57 UTC (rev 1486)
@@ -5400,61 +5400,117 @@
<h5>Sequential focus navigation</h5>
- <p class="issue">This section on the <code>tabindex</code> attribute
- needs to be checked for backwards-compatibility.</p>
-
<p>The <dfn title="attr-tabindex"><code>tabindex</code></dfn>
- attribute specifies the relative order of elements for the purposes
- of sequential focus navigation. The name "tab index" comes from the
- common use of the "tab" key to navigate through the focusable
- elements. The term "tabbing" refers to moving forward through the
- focusable elements.</p>
+ content attribute specifies whether the element is focusable,
+ whether it can be reached using sequential focus navigation, and the
+ relative order of the element for the purposes of sequential focus
+ navigation. The name "tab index" comes from the common use of the
+ "tab" key to navigate through the focusable elements. The term
+ "tabbing" refers to moving forward through the focusable elements
+ that can be reached using sequential focus navigation.</p>
<p>The <code title="attr-tabindex">tabindex</code> attribute, if
specified, must have a value that is a <span>valid
integer</span>.</p>
<p>If the attribute is specified, it must be parsed using the
- <span>rules for parsing integers</span>. If parsing the value
- returns an error, the attribute is ignored for the purposes of focus
- management (as if it wasn't specified).</p>
+ <span>rules for parsing integers</span>. The attribute's values have
+ the following meanings:</p>
- <p>A positive integer or zero specifies the index of the element in
- the current scope's tab order. Elements with the same index are
- sorted in <span>tree order</span> for the purposes of tabbing.</p>
+ <dl>
- <p id="negative-tabindex">A negative integer specifies that the
- element should be removed from the tab order. If the element does
- normally take focus, it may still be focused using other means (e.g.
- it could be focused by a click).</p>
+ <dt>If the attribute is omitted or parsing the value returns an
+ error</dt>
- <p>If the attribute is absent (or invalid), then the user agent must
- treat the element as if it had the value 0 or the value −1, based on
- platform conventions.</p>
+ <dd>
- <p class="example">For example, a user agent might default
- <code>textarea</code> elements to 0, and <code>button</code>
- elements to −1, making text fields part of the tabbing cycle but
- buttons not.</p>
+ <p>The user agent should follow platform conventions to determine if
+ the element is to be focusable and, if so, whether the element can
+ be reached using sequential focus navigation, and if so, what its
+ relative order should be.</p>
- <p>When an element that does not normally take focus (i.e. whose
- default value would be −1) has the <code
- title="attr-tabindex">tabindex</code> attribute specified with a
- positive value, then it should be added to the tab order and should
- be made focusable. When focused, the element matches the CSS
+ </dd>
+
+ <dt id="negative-tabindex">If the value is a negative integer</dt>
+
+ <dd>
+
+ <p>The user agent must allow the element to be focused, but should
+ not allow the element to be reached using sequential focus
+ navigation.</p>
+
+ </dd>
+
+ <dt>If the value is a zero</dt>
+
+ <dd>
+
+ <p>The user agent must allow the element to be focused, should
+ allow the element to be reached using sequential focus navigation,
+ and should follow platform conventions to determine the element's
+ relative order.</p>
+
+ </dd>
+
+ <dt>If the value is greater than zero</dt>
+
+ <dd>
+
+ <p>The user agent must allow the element to be focused, should
+ allow the element to be reached using sequential focus navigation,
+ and should place the element in the sequential focus navigation
+ order so that it is:</p>
+
+ <ul>
+
+ <li>before any focusable element whose <code
+ title="attr-tabindex">tabindex</code> attribute has been
+ omitted or whose value, when parsed, returns an error,</li>
+
+ <li>before any focusable element whose <code
+ title="attr-tabindex">tabindex</code> attribute has a value equal
+ to or less than zero,</li>
+
+ <li>after any element whose <code
+ title="attr-tabindex">tabindex</code> attribute has a value
+ greater than zero but less than the value of the <code
+ title="attr-tabindex">tabindex</code> attribute on the
+ element,</li>
+
+ <li>after any element whose <code
+ title="attr-tabindex">tabindex</code> attribute has a value equal
+ to the value of the <code title="attr-tabindex">tabindex</code>
+ attribute on the element but that is earlier in the document in
+ <span>tree order</span> than the element,</li>
+
+ <li>before any element whose <code
+ title="attr-tabindex">tabindex</code> attribute has a value equal
+ to the value of the <code title="attr-tabindex">tabindex</code>
+ attribute on the element but that is later in the document in
+ <span>tree order</span> than the element, and</li>
+
+ <li>before any element whose <code
+ title="attr-tabindex">tabindex</code> attribute has a value
+ greater than the value of the <code
+ title="attr-tabindex">tabindex</code> attribute on the
+ element.</li>
+
+ </dd>
+
+ </dl>
+
+ <p>When an element is focused, the element matches the CSS
<code>:focus</code> pseudo-class and key events are dispatched on
that element in response to keyboard input.</p>
<p>The <dfn title="dom-tabIndex"><code>tabIndex</code></dfn> DOM
- attribute reflects the value of the <code
+ attribute must <span>reflect</span> the value of the <code
title="attr-tabIndex">tabIndex</code> content attribute. If the
- attribute is not present (or has an invalid value) then the DOM
- attribute must return the UA's default value for that element, which
- will be either 0 (for elements in the tab order) or −1 (for elements
- not in the tab order).</p>
+ attribute is not present, or parsing its value returns an error,
+ then the DOM attribute must return 0 for elements that are focusable
+ and −1 for elements that are not focusable.</p>
-
<!--XXX
<h5>The <dfn><code>DocumentFocus</code></dfn> interface</h5>
@@ -6100,8 +6156,8 @@
title="dom-meta-content"><code>content</code></dfn> must
<span>reflect</span> the respective content attributes of the same
name. The DOM attribute <dfn
- title="dom-meta-httpEquiv"><code>httpEquiv</code></dfn> must reflect
- the content attribute <code
+ title="dom-meta-httpEquiv"><code>httpEquiv</code></dfn> must
+ <span>reflect</span> the content attribute <code
title="attr-meta-http-equiv">http-equiv</code>.</p>
@@ -8080,7 +8136,7 @@
contained in the <code>blockquote</code> element.</p>
<p>The <dfn title="dom-quote-cite"><code>cite</code></dfn> DOM
- attribute <code>reflects</code> the element's <code
+ attribute must <span>reflect</span> the element's <code
title="">cite</code> content attribte.
<p class="note">The best way to represent a conversation is not with
@@ -9717,10 +9773,10 @@
<p>The <dfn title="dom-progress-max"><code>max</code></dfn> and <dfn
title="dom-progress-value"><code>value</code></dfn> DOM attributes
- must reflect the elements' content attributes of the same name. When
- the relevant content attributes are absent, the DOM attributes must
- return zero. The value parsed from the <code>textContent</code>
- never affects the DOM values.</p>
+ must <span>reflect</span> the elements' content attributes of the
+ same name. When the relevant content attributes are absent, the DOM
+ attributes must return zero. The value parsed from the
+ <code>textContent</code> never affects the DOM values.</p>
<p class="big-issue">Would be cool to have the <code
title="dom-progress-value">value</code> DOM attribute update the
@@ -10109,10 +10165,10 @@
title="dom-meter-low"><code>low</code></dfn>, <dfn
title="dom-meter-high"><code>high</code></dfn>, and <dfn
title="dom-meter-optimum"><code>optimum</code></dfn> DOM attributes
- must reflect the elements' content attributes of the same name. When
- the relevant content attributes are absent, the DOM attributes must
- return zero. The value parsed from the <code>textContent</code>
- never affects the DOM values.</p>
+ must <span>reflect</span> the elements' content attributes of the
+ same name. When the relevant content attributes are absent, the DOM
+ attributes must return zero. The value parsed from the
+ <code>textContent</code> never affects the DOM values.</p>
<p class="big-issue">Would be cool to have the <code
title="dom-meter-value">value</code> DOM attribute update the
@@ -10840,10 +10896,10 @@
};</pre>
<p>The <dfn title="dom-mod-cite"><code>cite</code></dfn> DOM
- attribute must reflect the element's ><code
+ attribute must <span>reflect</span> the element's ><code
title="attr-mod-cite">cite</code> content attribute. The <dfn
title="dom-mod-datetime"><code>dateTime</code></dfn> DOM attribute
- must reflect the element's <code title="">datetime</code> content
+ must <span>reflect</span> the element's <code title="">datetime</code> content
attribute.</p>
@@ -12441,7 +12497,7 @@
must contain a URI (or IRI).</p>
<p>The <dfn title="dom-video-poster"><code>poster</code></dfn> DOM
- attribute must reflect the <code
+ attribute must <span>reflect</span> the <code
title="attr-video-poster">poster</code> content attribute.</p>
<p>The <dfn
@@ -17376,7 +17432,7 @@
<p>The <dfn title="dom-dim-width"><code>width</code></dfn> and <dfn
title="dom-dim-height"><code>height</code></dfn> DOM attributes on
the <code>embed</code>, <code>object</code>, and <code>video</code>
- elements must reflect the content attributes of the same name.</p>
+ elements must <span>reflect</span> the content attributes of the same name.</p>
@@ -20114,7 +20170,7 @@
element? -->
<p>The <dfn title="dom-event-source-src"><code>src</code></dfn> DOM
- attribute must reflect the content attribute of the same name.</p>
+ attribute must <span>reflect</span> the content attribute of the same name.</p>
@@ -23272,12 +23328,12 @@
-->
<p>The <dfn title="dom-rule-condition"><code>condition</code></dfn>
- DOM attribute must reflect the <code
+ DOM attribute must <span>reflect</span> the <code
title="attr-rule-condition">condition</code> content attribute.</p>
<p>The <dfn title="dom-rule-mode"><code>mode</code></dfn> and <dfn
title="dom-rule-modeList"><code>modeList</code></dfn> DOM attributes
- must reflect the <code title="attr-rule-mode">mode</code> content
+ must <span>reflect</span> the <code title="attr-rule-mode">mode</code> content
attribute.</p>
@@ -23325,11 +23381,11 @@
template.</p>
<p>The <dfn title="dom-nest-filter"><code>filter</code></dfn> DOM
- attribute must reflect the <code
+ attribute must <span>reflect</span> the <code
title="attr-nest-filter">filter</code> content attribute.</p>
<p>The <dfn title="dom-nest-mode"><code>mode</code></dfn> DOM
- attribute must reflect the <code title="attr-nest-mode">mode</code>
+ attribute must <span>reflect</span> the <code title="attr-nest-mode">mode</code>
content attribute.</p>
@@ -23349,7 +23405,7 @@
element.</p>
<p>The <dfn title="dom-template"><code>template</code></dfn> DOM
- attribute must reflect the <code
+ attribute must <span>reflect</span> the <code
title="attr-template">template</code> content attribute.</p>
@@ -23366,7 +23422,7 @@
the data for the template.</p>
<p>The <dfn title="dom-ref"><code>ref</code></dfn> DOM
- attribute must reflect the <code
+ attribute must <span>reflect</span> the <code
title="attr-ref">ref</code> content attribute.</p>
@@ -23385,7 +23441,7 @@
<p>The <dfn
title="dom-registrationMark"><code>registrationMark</code></dfn> DOM
- attribute must reflect the <code
+ attribute must <span>reflect</span> the <code
title="attr-registrationmark">registrationmark</code> content
attribute.</p>
More information about the Commit-Watchers
mailing list