[html5] r4347 - [giow] (2) Rephrase how <form> in <table> is to be hidden for compatibility. Fix [...]
whatwg at whatwg.org
whatwg at whatwg.org
Tue Oct 27 03:02:18 PDT 2009
Author: ianh
Date: 2009-10-27 03:02:14 -0700 (Tue, 27 Oct 2009)
New Revision: 4347
Modified:
complete.html
index
source
Log:
[giow] (2) Rephrase how <form> in <table> is to be hidden for compatibility.
Fixing http://www.w3.org/Bugs/Public/show_bug.cgi?id=7978
Modified: complete.html
===================================================================
--- complete.html 2009-10-27 09:44:23 UTC (rev 4346)
+++ complete.html 2009-10-27 10:02:14 UTC (rev 4347)
@@ -79723,8 +79723,7 @@
[hidden], area, base, basefont, command, datalist, head,
input[type=hidden], link, menu[type=context], meta, noembed, noframes,
-param, rp, script, source, style, title, table > form, thead > form,
-tbody > form, tfoot > form, tr > form {
+param, rp, script, source, style, title {
display: none;
}
@@ -79751,14 +79750,15 @@
<!-- del, ins, and map are inline. -->
<p>For the purposes of the CSS table model, the <code><a href=#the-col-element>col</a></code>
- element is to be treated as if it was present as many times as its
- <code title=attr-col-span><a href=#attr-col-span>span</a></code> attribute <a href=#rules-for-parsing-non-negative-integers title="rules
- for parsing non-negative integers">specifies</a>.</p>
+ element is expected to be treated as if it was present as many times
+ as its <code title=attr-col-span><a href=#attr-col-span>span</a></code> attribute <a href=#rules-for-parsing-non-negative-integers title="rules for parsing non-negative
+ integers">specifies</a>.</p>
<p>For the purposes of the CSS table model, the
<code><a href=#the-colgroup-element>colgroup</a></code> element, if it contains no <code><a href=#the-col-element>col</a></code>
- element, is to be treated as if it had as many such children as its
- <code title=attr-colgroup-span><a href=#attr-colgroup-span>span</a></code> attribute <a href=#rules-for-parsing-non-negative-integers title="rules for parsing non-negative
+ element, is expected to be treated as if it had as many such
+ children as its <code title=attr-colgroup-span><a href=#attr-colgroup-span>span</a></code>
+ attribute <a href=#rules-for-parsing-non-negative-integers title="rules for parsing non-negative
integers">specifies</a>.</p>
<p>For the purposes of the CSS table model, the <code title=attr-tdth-colspan><a href=#attr-tdth-colspan>colspan</a></code> and <code title=attr-tdth-rowspan><a href=#attr-tdth-rowspan>rowspan</a></code> attributes on
@@ -79787,6 +79787,12 @@
for whom <a href=#concept-n-script title=concept-n-script>scripting is enabled</a>,
irrespective of CSS rules.</p>
+ <p>In <a href=#html-documents>HTML documents</a>, the user agent is expected to
+ hide <code><a href=#the-form-element>form</a></code> elements that are children of
+ <code><a href=#the-table-element>table</a></code>, <code><a href=#the-thead-element>thead</a></code>, <code><a href=#the-tbody-element>tbody</a></code>,
+ <code><a href=#the-tfoot-element>tfoot</a></code>, or <code><a href=#the-tr-element>tr</a></code> elements, irrespective of CSS
+ rules.</p>
+
</div>
Modified: index
===================================================================
--- index 2009-10-27 09:44:23 UTC (rev 4346)
+++ index 2009-10-27 10:02:14 UTC (rev 4347)
@@ -70694,8 +70694,7 @@
[hidden], area, base, basefont, command, datalist, head,
input[type=hidden], link, menu[type=context], meta, noembed, noframes,
-param, rp, script, source, style, title, table > form, thead > form,
-tbody > form, tfoot > form, tr > form {
+param, rp, script, source, style, title {
display: none;
}
@@ -70722,14 +70721,15 @@
<!-- del, ins, and map are inline. -->
<p>For the purposes of the CSS table model, the <code><a href=#the-col-element>col</a></code>
- element is to be treated as if it was present as many times as its
- <code title=attr-col-span><a href=#attr-col-span>span</a></code> attribute <a href=#rules-for-parsing-non-negative-integers title="rules
- for parsing non-negative integers">specifies</a>.</p>
+ element is expected to be treated as if it was present as many times
+ as its <code title=attr-col-span><a href=#attr-col-span>span</a></code> attribute <a href=#rules-for-parsing-non-negative-integers title="rules for parsing non-negative
+ integers">specifies</a>.</p>
<p>For the purposes of the CSS table model, the
<code><a href=#the-colgroup-element>colgroup</a></code> element, if it contains no <code><a href=#the-col-element>col</a></code>
- element, is to be treated as if it had as many such children as its
- <code title=attr-colgroup-span><a href=#attr-colgroup-span>span</a></code> attribute <a href=#rules-for-parsing-non-negative-integers title="rules for parsing non-negative
+ element, is expected to be treated as if it had as many such
+ children as its <code title=attr-colgroup-span><a href=#attr-colgroup-span>span</a></code>
+ attribute <a href=#rules-for-parsing-non-negative-integers title="rules for parsing non-negative
integers">specifies</a>.</p>
<p>For the purposes of the CSS table model, the <code title=attr-tdth-colspan><a href=#attr-tdth-colspan>colspan</a></code> and <code title=attr-tdth-rowspan><a href=#attr-tdth-rowspan>rowspan</a></code> attributes on
@@ -70758,6 +70758,12 @@
for whom <a href=#concept-n-script title=concept-n-script>scripting is enabled</a>,
irrespective of CSS rules.</p>
+ <p>In <a href=#html-documents>HTML documents</a>, the user agent is expected to
+ hide <code><a href=#the-form-element>form</a></code> elements that are children of
+ <code><a href=#the-table-element>table</a></code>, <code><a href=#the-thead-element>thead</a></code>, <code><a href=#the-tbody-element>tbody</a></code>,
+ <code><a href=#the-tfoot-element>tfoot</a></code>, or <code><a href=#the-tr-element>tr</a></code> elements, irrespective of CSS
+ rules.</p>
+
</div>
Modified: source
===================================================================
--- source 2009-10-27 09:44:23 UTC (rev 4346)
+++ source 2009-10-27 10:02:14 UTC (rev 4347)
@@ -87357,8 +87357,7 @@
[hidden], area, base, basefont, command, datalist, head,
input[type=hidden], link, menu[type=context], meta, noembed, noframes,
-param, rp, script, source, style, title, table > form, thead > form,
-tbody > form, tfoot > form, tr > form {
+param, rp, script, source, style, title {
display: none;
}
@@ -87385,15 +87384,16 @@
<!-- del, ins, and map are inline. -->
<p>For the purposes of the CSS table model, the <code>col</code>
- element is to be treated as if it was present as many times as its
- <code title="attr-col-span">span</code> attribute <span title="rules
- for parsing non-negative integers">specifies</span>.</p>
+ element is expected to be treated as if it was present as many times
+ as its <code title="attr-col-span">span</code> attribute <span
+ title="rules for parsing non-negative
+ integers">specifies</span>.</p>
<p>For the purposes of the CSS table model, the
<code>colgroup</code> element, if it contains no <code>col</code>
- element, is to be treated as if it had as many such children as its
- <code title="attr-colgroup-span">span</code> attribute <span
- title="rules for parsing non-negative
+ element, is expected to be treated as if it had as many such
+ children as its <code title="attr-colgroup-span">span</code>
+ attribute <span title="rules for parsing non-negative
integers">specifies</span>.</p>
<p>For the purposes of the CSS table model, the <code
@@ -87426,6 +87426,12 @@
for whom <span title="concept-n-script">scripting is enabled</span>,
irrespective of CSS rules.</p>
+ <p>In <span>HTML documents</span>, the user agent is expected to
+ hide <code>form</code> elements that are children of
+ <code>table</code>, <code>thead</code>, <code>tbody</code>,
+ <code>tfoot</code>, or <code>tr</code> elements, irrespective of CSS
+ rules.</p>
+
</div>
More information about the Commit-Watchers
mailing list