[html5] r5468 - [giow] (2) Adjust to match reality Fixing http://www.w3.org/Bugs/Public/show_bug [...]

whatwg at whatwg.org whatwg at whatwg.org
Fri Sep 10 16:27:02 PDT 2010


Author: ianh
Date: 2010-09-10 16:27:01 -0700 (Fri, 10 Sep 2010)
New Revision: 5468

Modified:
   complete.html
   index
   source
Log:
[giow] (2) Adjust to match reality
Fixing http://www.w3.org/Bugs/Public/show_bug.cgi?id=10343

Modified: complete.html
===================================================================
--- complete.html	2010-09-10 22:58:09 UTC (rev 5467)
+++ complete.html	2010-09-10 23:27:01 UTC (rev 5468)
@@ -23538,8 +23538,8 @@
    <dt>DOM interface:</dt>
    <dd>
     <pre class=idl>interface <dfn id=htmlvideoelement>HTMLVideoElement</dfn> : <a href=#htmlmediaelement>HTMLMediaElement</a> {
-           attribute DOMString <a href=#dom-dim-width title=dom-dim-width>width</a>;
-           attribute DOMString <a href=#dom-dim-height title=dom-dim-height>height</a>;
+           attribute unsigned long <a href=#dom-dim-width title=dom-dim-width>width</a>;
+           attribute unsigned long <a href=#dom-dim-height title=dom-dim-height>height</a>;
   readonly attribute unsigned long <a href=#dom-video-videowidth title=dom-video-videoWidth>videoWidth</a>;
   readonly attribute unsigned long <a href=#dom-video-videoheight title=dom-video-videoHeight>videoHeight</a>;
            attribute DOMString <a href=#dom-video-poster title=dom-video-poster>poster</a>;
@@ -33957,6 +33957,11 @@
   and <code><a href=#video>video</a></code> elements must <a href=#reflect>reflect</a> the
   respective content attributes of the same name.</p>
 
+  <p class=note>For <code><a href=#the-iframe-element>iframe</a></code>, <code><a href=#the-embed-element>embed</a></code>, and
+  <code><a href=#the-object-element>object</a></code> the IDL attributes are <code>DOMString</code>;
+  for <code><a href=#video>video</a></code> the IDL attributes are <code>unsigned
+  long</code>.</p>
+
   </div>
 
 
@@ -58544,7 +58549,7 @@
 
   <h3 id=the-window-object><span class=secno>6.2 </span>The <code><a href=#window>Window</a></code> object</h3>
 
-  <pre class=idl>[OverrideBuiltins, ReplaceableNamedProperties] <!-- XXX http://www.w3.org/Bugs/Public/show_bug.cgi?id=8241 -->
+  <pre class=idl>[OverrideBuiltins, ReplaceableNamedProperties] <!-- XXX http://www.w3.org/Bugs/Public/show_bug.cgi?id=8241 and http://www.w3.org/Bugs/Public/show_bug.cgi?id=10340 -->
 interface <dfn id=window>Window</dfn> {
   // the current browsing context
   readonly attribute <a href=#windowproxy>WindowProxy</a> <a href=#dom-window title=dom-window>window</a>;
@@ -93088,6 +93093,7 @@
   Akatsuki Kitamura,
   Alan Plum,
   Alastair Campbell,
+  Alejandro G. Castro,
   Alex Bishop,
   Alex Nicolaou,
   Alex Rousskov,

Modified: index
===================================================================
--- index	2010-09-10 22:58:09 UTC (rev 5467)
+++ index	2010-09-10 23:27:01 UTC (rev 5468)
@@ -23518,8 +23518,8 @@
    <dt>DOM interface:</dt>
    <dd>
     <pre class=idl>interface <dfn id=htmlvideoelement>HTMLVideoElement</dfn> : <a href=#htmlmediaelement>HTMLMediaElement</a> {
-           attribute DOMString <a href=#dom-dim-width title=dom-dim-width>width</a>;
-           attribute DOMString <a href=#dom-dim-height title=dom-dim-height>height</a>;
+           attribute unsigned long <a href=#dom-dim-width title=dom-dim-width>width</a>;
+           attribute unsigned long <a href=#dom-dim-height title=dom-dim-height>height</a>;
   readonly attribute unsigned long <a href=#dom-video-videowidth title=dom-video-videoWidth>videoWidth</a>;
   readonly attribute unsigned long <a href=#dom-video-videoheight title=dom-video-videoHeight>videoHeight</a>;
            attribute DOMString <a href=#dom-video-poster title=dom-video-poster>poster</a>;
@@ -33937,6 +33937,11 @@
   and <code><a href=#video>video</a></code> elements must <a href=#reflect>reflect</a> the
   respective content attributes of the same name.</p>
 
+  <p class=note>For <code><a href=#the-iframe-element>iframe</a></code>, <code><a href=#the-embed-element>embed</a></code>, and
+  <code><a href=#the-object-element>object</a></code> the IDL attributes are <code>DOMString</code>;
+  for <code><a href=#video>video</a></code> the IDL attributes are <code>unsigned
+  long</code>.</p>
+
   </div>
 
 
@@ -58524,7 +58529,7 @@
 
   <h3 id=the-window-object><span class=secno>6.2 </span>The <code><a href=#window>Window</a></code> object</h3>
 
-  <pre class=idl>[OverrideBuiltins, ReplaceableNamedProperties] <!-- XXX http://www.w3.org/Bugs/Public/show_bug.cgi?id=8241 -->
+  <pre class=idl>[OverrideBuiltins, ReplaceableNamedProperties] <!-- XXX http://www.w3.org/Bugs/Public/show_bug.cgi?id=8241 and http://www.w3.org/Bugs/Public/show_bug.cgi?id=10340 -->
 interface <dfn id=window>Window</dfn> {
   // the current browsing context
   readonly attribute <a href=#windowproxy>WindowProxy</a> <a href=#dom-window title=dom-window>window</a>;
@@ -89170,6 +89175,7 @@
   Akatsuki Kitamura,
   Alan Plum,
   Alastair Campbell,
+  Alejandro G. Castro,
   Alex Bishop,
   Alex Nicolaou,
   Alex Rousskov,

Modified: source
===================================================================
--- source	2010-09-10 22:58:09 UTC (rev 5467)
+++ source	2010-09-10 23:27:01 UTC (rev 5468)
@@ -25232,8 +25232,8 @@
    <dt>DOM interface:</dt>
    <dd>
     <pre class="idl">interface <dfn>HTMLVideoElement</dfn> : <span>HTMLMediaElement</span> {
-           attribute DOMString <span title="dom-dim-width">width</span>;
-           attribute DOMString <span title="dom-dim-height">height</span>;
+           attribute unsigned long <span title="dom-dim-width">width</span>;
+           attribute unsigned long <span title="dom-dim-height">height</span>;
   readonly attribute unsigned long <span title="dom-video-videoWidth">videoWidth</span>;
   readonly attribute unsigned long <span title="dom-video-videoHeight">videoHeight</span>;
            attribute DOMString <span title="dom-video-poster">poster</span>;
@@ -37591,6 +37591,11 @@
   and <code>video</code> elements must <span>reflect</span> the
   respective content attributes of the same name.</p>
 
+  <p class="note">For <code>iframe</code>, <code>embed</code>, and
+  <code>object</code> the IDL attributes are <code>DOMString</code>;
+  for <code>video</code> the IDL attributes are <code>unsigned
+  long</code>.</p>
+
   </div>
 
 
@@ -66141,7 +66146,7 @@
 
   <h3>The <code>Window</code> object</h3>
 
-  <pre class="idl">[OverrideBuiltins, ReplaceableNamedProperties] <!-- XXX http://www.w3.org/Bugs/Public/show_bug.cgi?id=8241 -->
+  <pre class="idl">[OverrideBuiltins, ReplaceableNamedProperties] <!-- XXX http://www.w3.org/Bugs/Public/show_bug.cgi?id=8241 and http://www.w3.org/Bugs/Public/show_bug.cgi?id=10340 -->
 interface <dfn>Window</dfn> {
   // the current browsing context
   readonly attribute <span>WindowProxy</span> <span title="dom-window">window</span>;
@@ -106903,6 +106908,7 @@
   Akatsuki Kitamura,
   Alan Plum,
   Alastair Campbell,
+  Alejandro G. Castro,
   Alex Bishop,
   Alex Nicolaou,
   Alex Rousskov,




More information about the Commit-Watchers mailing list