- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 10 Aug 2011 02:46:31 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv27184
Modified Files:
forms.html spec.html the-button-element.html
the-iframe-element.html
Log Message:
typo (whatwg r6407)
[updated by splitter]
Index: the-iframe-element.html
===================================================================
RCS file: /sources/public/html5/spec/the-iframe-element.html,v
retrieving revision 1.87
retrieving revision 1.88
diff -u -d -r1.87 -r1.88
--- the-iframe-element.html 9 Aug 2011 22:46:28 -0000 1.87
+++ the-iframe-element.html 10 Aug 2011 02:46:29 -0000 1.88
@@ -1377,7 +1377,7 @@
features such as the Flash "allowScriptAccess" parameter.</p><p>The <dfn id="attr-object-type" title="attr-object-type"><code>type</code></dfn>
attribute, if present, specifies the type of the resource. If
present, the attribute must be a <a href="infrastructure.html#valid-mime-type">valid MIME type</a>.</p><p>At least one of either the <code title="attr-object-data"><a href="#attr-object-data">data</a></code> attribute or the <code title="attr-object-type"><a href="#attr-object-type">type</a></code> attribute must be present.</p><p>The <dfn id="attr-object-typemustmatch" title="attr-object-typemustmatch"><code>typemustmatch</code></dfn>
- attribute is a <a href="common-microsyntaxes.html#boolean-attribute">boolean attribute</a> whose precense
+ attribute is a <a href="common-microsyntaxes.html#boolean-attribute">boolean attribute</a> whose presence
indicates that the resource specified by the <code title="attr-object-data"><a href="#attr-object-data">data</a></code> attribute is only to be used if
the value of the <code title="attr-object-type"><a href="#attr-object-type">type</a></code>
attribute and the <a href="fetching-resources.html#content-type">Content-Type</a> of the aforementioned
Index: forms.html
===================================================================
RCS file: /sources/public/html5/spec/forms.html,v
retrieving revision 1.1040
retrieving revision 1.1041
diff -u -d -r1.1040 -r1.1041
--- forms.html 29 Jul 2011 00:46:53 -0000 1.1040
+++ forms.html 10 Aug 2011 02:46:28 -0000 1.1041
@@ -1024,6 +1024,23 @@
</div><div class="example">
+ <p>This example shows a <code><a href="#the-fieldset-element">fieldset</a></code> element being used to
+ group a set of related controls:</p>
+
+ <pre><fieldset>
+ <legend>Display</legend>
+ <p><label><input type=radio name=c value=0 checked> Black on White</label>
+ <p><label><input type=radio name=c value=1> White on Black</label>
+ <p><label><input type=checkbox name=g> Use grayscale</label>
+ <p><label>Enhance contrast <input type=range name=e list=contrast min=0 max=100 value=0 step=1></label>
+ <datalist id=contrast>
+ <option label=Normal value=0>
+ <option label=Maximum value=100>
+ </datalist>
+</fieldset></pre>
+
+ </div><div class="example">
+
<p>The following snippet shows a fieldset with a checkbox in the
legend that controls whether or not the fieldset is enabled. The
contents of the fieldset consist of two required text fields and an
Index: the-button-element.html
===================================================================
RCS file: /sources/public/html5/spec/the-button-element.html,v
retrieving revision 1.79
retrieving revision 1.80
diff -u -d -r1.79 -r1.80
--- the-button-element.html 3 Aug 2011 23:46:25 -0000 1.79
+++ the-button-element.html 10 Aug 2011 02:46:29 -0000 1.80
@@ -363,7 +363,7 @@
attribute DOMString <a href="association-of-controls-and-forms.html#dom-fs-formaction" title="dom-fs-formAction">formAction</a>;
attribute DOMString <a href="association-of-controls-and-forms.html#dom-fs-formenctype" title="dom-fs-formEnctype">formEnctype</a>;
attribute DOMString <a href="association-of-controls-and-forms.html#dom-fs-formmethod" title="dom-fs-formMethod">formMethod</a>;
- attribute DOMString <a href="association-of-controls-and-forms.html#dom-fs-formnovalidate" title="dom-fs-formNoValidate">formNoValidate</a>;
+ attribute boolean <a href="association-of-controls-and-forms.html#dom-fs-formnovalidate" title="dom-fs-formNoValidate">formNoValidate</a>;
attribute DOMString <a href="association-of-controls-and-forms.html#dom-fs-formtarget" title="dom-fs-formTarget">formTarget</a>;
attribute DOMString <a href="association-of-controls-and-forms.html#dom-fe-name" title="dom-fe-name">name</a>;
attribute DOMString <a href="#dom-button-type" title="dom-button-type">type</a>;
Index: spec.html
===================================================================
RCS file: /sources/public/html5/spec/spec.html,v
retrieving revision 1.1599
retrieving revision 1.1600
diff -u -d -r1.1599 -r1.1600
--- spec.html 10 Aug 2011 01:46:24 -0000 1.1599
+++ spec.html 10 Aug 2011 02:46:29 -0000 1.1600
@@ -349,7 +349,7 @@
<a href="Overview.html">single page HTML</a>,
<a href="spec.html">multipage HTML</a>,
<a href="author/">web developer edition</a>.
-This is revision 1.5110.
+This is revision 1.5113.
</p>
<p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a>
© 2011 <a href="http://www.w3.org/"><abbr title="World Wide
Received on Wednesday, 10 August 2011 02:46:32 UTC