html5/spec media-elements.html,1.173,1.174 single-page.html,1.106,1.107 spec.html,1.1977,1.1978 the-input-element.html,1.233,1.234

Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv31137

Modified Files:
	media-elements.html single-page.html spec.html 
	the-input-element.html 
Log Message:
commit afa7953e6d2a78a035e49b3a8459d6338ab342b0
Author: Robin Berjon <robin@berjon.com>
Date:   Tue Sep 11 17:03:54 2012 +0200

    fixed example - https://www.w3.org/Bugs/Public/show_bug.cgi?id=18222


Index: the-input-element.html
===================================================================
RCS file: /sources/public/html5/spec/the-input-element.html,v
retrieving revision 1.233
retrieving revision 1.234
diff -u -d -r1.233 -r1.234
--- the-input-element.html	11 Sep 2012 14:14:31 -0000	1.233
+++ the-input-element.html	11 Sep 2012 15:13:42 -0000	1.234
@@ -1709,7 +1709,7 @@
   <p>The <code title="dom-cva-willValidate"><a href="constraints.html#dom-cva-willvalidate">willValidate</a></code>, <code title="dom-cva-validity"><a href="constraints.html#dom-cva-validity">validity</a></code>, and <code title="dom-cva-validationMessage"><a href="constraints.html#dom-cva-validationmessage">validationMessage</a></code>
   attributes, and the <code title="dom-cva-checkValidatity"><a href="constraints.html#dom-cva-checkvalidatity">checkValidity()</a></code> and <code title="dom-cva-setCustomValidity"><a href="constraints.html#dom-cva-setcustomvalidity">setCustomValidity()</a></code>
   methods, are part of the <a href="constraints.html#the-constraint-validation-api">constraint validation API</a>. The
-  <code title="dom-lfe-labels"><a href="the-label-element.html#dom-lfe-labels">labels</a></code> attribute provides a list
+  <code title="dom-lfe-labels"><a href="the-label-element.html#dom-lfe-labels">labels</a></code> IDL attribute provides a list
   of the element's <code><a href="the-label-element.html#the-label-element">label</a></code>s. The <code title="dom-textarea/input-select"><a href="textFieldSelection.html#dom-textarea/input-select">select()</a></code>, <code title="dom-textarea/input-selectionStart"><a href="textFieldSelection.html#dom-textarea/input-selectionstart">selectionStart</a></code>,
   <code title="dom-textarea/input-selectionEnd"><a href="textFieldSelection.html#dom-textarea/input-selectionend">selectionEnd</a></code>,
   <code title="dom-textarea/input-selectionDirection"><a href="textFieldSelection.html#dom-textarea/input-selectiondirection">selectionDirection</a></code>,

Index: media-elements.html
===================================================================
RCS file: /sources/public/html5/spec/media-elements.html,v
retrieving revision 1.173
retrieving revision 1.174
diff -u -d -r1.173 -r1.174
--- media-elements.html	11 Sep 2012 14:14:26 -0000	1.173
+++ media-elements.html	11 Sep 2012 15:13:41 -0000	1.174
@@ -6093,8 +6093,8 @@
 var sounds = sfx.addTextTrack('metadata');
 
 // add sounds we care about
-sounds.addCue(new TextTrackCue('dog bark', 12.783, 13.612, '', '', '', true));
-sounds.addCue(new TextTrackCue('kitten mew', 13.612, 15.091, '', '', '', true));
+sounds.addCue(new TextTrackCue(12.783, 13.612, 'dog bark'));
+sounds.addCue(new TextTrackCue(13.612, 15.091, 'kitten mew'));
 
 function playSound(id) {
   sfx.currentTime = sounds.getCueById(id).startTime;

Index: single-page.html
===================================================================
RCS file: /sources/public/html5/spec/single-page.html,v
retrieving revision 1.106
retrieving revision 1.107
diff -u -d -r1.106 -r1.107
--- single-page.html	11 Sep 2012 14:43:44 -0000	1.106
+++ single-page.html	11 Sep 2012 15:13:41 -0000	1.107
@@ -32907,8 +32907,8 @@
 var sounds = sfx.addTextTrack('metadata');
 
 // add sounds we care about
-sounds.addCue(new TextTrackCue('dog bark', 12.783, 13.612, '', '', '', true));
-sounds.addCue(new TextTrackCue('kitten mew', 13.612, 15.091, '', '', '', true));
+sounds.addCue(new TextTrackCue(12.783, 13.612, 'dog bark'));
+sounds.addCue(new TextTrackCue(13.612, 15.091, 'kitten mew'));
 
 function playSound(id) {
   sfx.currentTime = sounds.getCueById(id).startTime;
@@ -40523,7 +40523,7 @@
   <p>The <code title=dom-cva-willValidate><a href=#dom-cva-willvalidate>willValidate</a></code>, <code title=dom-cva-validity><a href=#dom-cva-validity>validity</a></code>, and <code title=dom-cva-validationMessage><a href=#dom-cva-validationmessage>validationMessage</a></code>
   attributes, and the <code title=dom-cva-checkValidatity><a href=#dom-cva-checkvalidatity>checkValidity()</a></code> and <code title=dom-cva-setCustomValidity><a href=#dom-cva-setcustomvalidity>setCustomValidity()</a></code>
   methods, are part of the <a href=#the-constraint-validation-api>constraint validation API</a>. The
-  <code title=dom-lfe-labels><a href=#dom-lfe-labels>labels</a></code> attribute provides a list
+  <code title=dom-lfe-labels><a href=#dom-lfe-labels>labels</a></code> IDL attribute provides a list
   of the element's <code><a href=#the-label-element>label</a></code>s. The <code title=dom-textarea/input-select><a href=#dom-textarea/input-select>select()</a></code>, <code title=dom-textarea/input-selectionStart><a href=#dom-textarea/input-selectionstart>selectionStart</a></code>,
   <code title=dom-textarea/input-selectionEnd><a href=#dom-textarea/input-selectionend>selectionEnd</a></code>,
   <code title=dom-textarea/input-selectionDirection><a href=#dom-textarea/input-selectiondirection>selectionDirection</a></code>,

Received on Tuesday, 11 September 2012 15:13:45 UTC