Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[giow] (2) Correctness (colSpan and rowSpan reflect 'colspan' and 'ro…
…wspan' not 'colSpan' and 'rowSpan').

Fixing http://www.w3.org/Bugs/Public/show_bug.cgi?id=14010

git-svn-id: http://svn.whatwg.org/webapps@6703 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Oct 19, 2011
1 parent c1f0f5e commit 2bfc95e
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 19 deletions.
13 changes: 7 additions & 6 deletions complete.html
Expand Up @@ -40750,14 +40750,15 @@ <h4 id=attributes-common-to-td-and-th-elements><span class=secno>4.9.11 </span>A
</dl><div class=impl>

<p>The <dfn id=dom-tdth-colspan title=dom-tdth-colSpan><code>colSpan</code></dfn> IDL
attribute must <a href=#reflect>reflect</a> the content attribute of the
same name. The value must be <a href=#limited-to-only-non-negative-numbers-greater-than-zero>limited to only non-negative
numbers greater than zero</a>.</p>
attribute must <a href=#reflect>reflect</a> the <code title=attr-tdth-colspan><a href=#attr-tdth-colspan>colspan</a></code> content attribute. The
value must be <a href=#limited-to-only-non-negative-numbers-greater-than-zero>limited to only non-negative numbers greater
than zero</a>.</p>

<p>The <dfn id=dom-tdth-rowspan title=dom-tdth-rowSpan><code>rowSpan</code></dfn> IDL
attribute must <a href=#reflect>reflect</a> the content attribute of the
same name. Its default value, which must be used if <a href=#rules-for-parsing-non-negative-integers title="rules for parsing non-negative integers">parsing the
attribute as a non-negative integer</a> returns an error, is 1.</p>
attribute must <a href=#reflect>reflect</a> the <code title=attr-tdth-rowspan><a href=#attr-tdth-rowspan>rowspan</a></code> content attribute. Its
default value, which must be used if <a href=#rules-for-parsing-non-negative-integers title="rules for parsing
non-negative integers">parsing the attribute as a non-negative
integer</a> returns an error, is 1.</p>

<p>The <dfn id=dom-tdth-headers title=dom-tdth-headers><code>headers</code></dfn> IDL
attribute must <a href=#reflect>reflect</a> the content attribute of the
Expand Down
13 changes: 7 additions & 6 deletions index
Expand Up @@ -40750,14 +40750,15 @@ the cell that corresponds to the values of the two dice.
</dl><div class=impl>

<p>The <dfn id=dom-tdth-colspan title=dom-tdth-colSpan><code>colSpan</code></dfn> IDL
attribute must <a href=#reflect>reflect</a> the content attribute of the
same name. The value must be <a href=#limited-to-only-non-negative-numbers-greater-than-zero>limited to only non-negative
numbers greater than zero</a>.</p>
attribute must <a href=#reflect>reflect</a> the <code title=attr-tdth-colspan><a href=#attr-tdth-colspan>colspan</a></code> content attribute. The
value must be <a href=#limited-to-only-non-negative-numbers-greater-than-zero>limited to only non-negative numbers greater
than zero</a>.</p>

<p>The <dfn id=dom-tdth-rowspan title=dom-tdth-rowSpan><code>rowSpan</code></dfn> IDL
attribute must <a href=#reflect>reflect</a> the content attribute of the
same name. Its default value, which must be used if <a href=#rules-for-parsing-non-negative-integers title="rules for parsing non-negative integers">parsing the
attribute as a non-negative integer</a> returns an error, is 1.</p>
attribute must <a href=#reflect>reflect</a> the <code title=attr-tdth-rowspan><a href=#attr-tdth-rowspan>rowspan</a></code> content attribute. Its
default value, which must be used if <a href=#rules-for-parsing-non-negative-integers title="rules for parsing
non-negative integers">parsing the attribute as a non-negative
integer</a> returns an error, is 1.</p>

<p>The <dfn id=dom-tdth-headers title=dom-tdth-headers><code>headers</code></dfn> IDL
attribute must <a href=#reflect>reflect</a> the content attribute of the
Expand Down
16 changes: 9 additions & 7 deletions source
Expand Up @@ -45267,15 +45267,17 @@ the cell that corresponds to the values of the two dice.
<div class="impl">

<p>The <dfn title="dom-tdth-colSpan"><code>colSpan</code></dfn> IDL
attribute must <span>reflect</span> the content attribute of the
same name. The value must be <span>limited to only non-negative
numbers greater than zero</span>.</p>
attribute must <span>reflect</span> the <code
title="attr-tdth-colspan">colspan</code> content attribute. The
value must be <span>limited to only non-negative numbers greater
than zero</span>.</p>

<p>The <dfn title="dom-tdth-rowSpan"><code>rowSpan</code></dfn> IDL
attribute must <span>reflect</span> the content attribute of the
same name. Its default value, which must be used if <span
title="rules for parsing non-negative integers">parsing the
attribute as a non-negative integer</span> returns an error, is 1.</p>
attribute must <span>reflect</span> the <code
title="attr-tdth-rowspan">rowspan</code> content attribute. Its
default value, which must be used if <span title="rules for parsing
non-negative integers">parsing the attribute as a non-negative
integer</span> returns an error, is 1.</p>

<p>The <dfn title="dom-tdth-headers"><code>headers</code></dfn> IDL
attribute must <span>reflect</span> the content attribute of the
Expand Down

0 comments on commit 2bfc95e

Please sign in to comment.