html5/spec forms.html,1.1009,1.1010 spec.html,1.1296,1.1297 the-iframe-element.html,1.22,1.23

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

Modified Files:
	forms.html spec.html the-iframe-element.html 
Log Message:
Define that <param> is dynamic (where the API supports that). (whatwg r5625)

[updated by splitter]


Index: the-iframe-element.html
===================================================================
RCS file: /sources/public/html5/spec/the-iframe-element.html,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -d -r1.22 -r1.23
--- the-iframe-element.html	13 Oct 2010 18:46:48 -0000	1.22
+++ the-iframe-element.html	14 Oct 2010 08:47:12 -0000	1.23
@@ -2078,6 +2078,16 @@
   element defines a <dfn id="concept-param-parameter" title="concept-param-parameter">parameter</dfn> with the given
   name/value pair.</p>
 
+  <p>If either the name or value of a <a href="#concept-param-parameter" title="concept-param-parameter">parameter</a> defined by a
+  <code><a href="#the-param-element">param</a></code> element that is the child of an
+  <code><a href="#the-object-element">object</a></code> element that <a href="rendering.html#represents">represents</a> an
+  instantiated <a href="infrastructure.html#plugin">plugin</a> changes, and if that
+  <a href="infrastructure.html#plugin">plugin</a> is communicating with the user agent using an
+  API that features the ability to update the <a href="infrastructure.html#plugin">plugin</a> when
+  the name or value of a <a href="#concept-param-parameter" title="concept-param-parameter">parameter</a> so changes, then
+  the user agent must appropriately exercise that ability to notify
+  the <a href="infrastructure.html#plugin">plugin</a> of the change.</p>
+
   <p>The IDL attributes <dfn id="dom-param-name" title="dom-param-name"><code>name</code></dfn> and <dfn id="dom-param-value" title="dom-param-value"><code>value</code></dfn> must both
   <a href="common-dom-interfaces.html#reflect">reflect</a> the respective content attributes of the same
   name.</p>

Index: forms.html
===================================================================
RCS file: /sources/public/html5/spec/forms.html,v
retrieving revision 1.1009
retrieving revision 1.1010
diff -u -d -r1.1009 -r1.1010
--- forms.html	14 Oct 2010 08:16:57 -0000	1.1009
+++ forms.html	14 Oct 2010 08:47:11 -0000	1.1010
@@ -750,8 +750,8 @@
 
   readonly attribute <a href="common-dom-interfaces.html#htmlformcontrolscollection">HTMLFormControlsCollection</a> <a href="#dom-form-elements" title="dom-form-elements">elements</a>;
   readonly attribute long <a href="#dom-form-length" title="dom-form-length">length</a>;
-  caller getter any <a href="#dom-form-item" title="dom-form-item">item</a>(in unsigned long index);
-  caller getter any <a href="#dom-form-nameditem" title="dom-form-namedItem">namedItem</a>(in DOMString name);
+  caller <a href="#dom-form-item" title="dom-form-item">getter</a> any (in unsigned long index);
+  caller <a href="#dom-form-nameditem" title="dom-form-namedItem">getter</a> any (in DOMString name);
 
   void <a href="#dom-form-submit" title="dom-form-submit">submit</a>();
   void <a href="#dom-form-reset" title="dom-form-reset">reset</a>();
@@ -805,7 +805,6 @@
 
    </dd>
 
-   <dt><var title="">element</var> = <var title="">form</var> . <code title="dom-form-item"><a href="#dom-form-item">item</a></code>(<var title="">index</var>)</dt>
    <dt><var title="">form</var>[<var title="">index</var>]</dt>
    <dt><var title="">form</var>(<var title="">index</var>)</dt>
 
@@ -816,7 +815,6 @@
 
    </dd>
 
-   <dt><var title="">element</var> = <var title="">form</var> . <code title="dom-form-namedItem"><a href="#dom-form-nameditem">namedItem</a></code>(<var title="">name</var>)</dt>
    <dt><var title="">form</var>[<var title="">name</var>]</dt>
    <dt><var title="">form</var>(<var title="">name</var>)</dt>
 
@@ -909,9 +907,10 @@
   the indices supported by the object returned by the <code title="dom-form-elements"><a href="#dom-form-elements">elements</a></code> attribute at that
   instant.</p>
 
-  <p>The <dfn id="dom-form-item" title="dom-form-item"><code>item(<var title="">index</var>)</code></dfn> method must return the value
-  returned by the method of the same name on the <code title="dom-form-elements"><a href="#dom-form-elements">elements</a></code> collection, when invoked
-  with the same argument.</p>
+  <p>When a <code><a href="#the-form-element">form</a></code> element is <dfn id="dom-form-item" title="dom-form-item">indexed for indexed property retrieval</dfn>,
+  the user agent must return the value returned by the <code title="dom-HTMLFormControlsCollection-item">item</code> method on
+  the <code title="dom-form-elements"><a href="#dom-form-elements">elements</a></code> collection, when
+  invoked with the given index as its argument.</p>
 
   <p>Each <code><a href="#the-form-element">form</a></code> element has a mapping of names to elements
   called the <dfn id="past-names-map">past names map</dfn>. It is used to persist names of
@@ -921,8 +920,8 @@
   names currently supported by the object returned by the <code title="dom-form-elements"><a href="#dom-form-elements">elements</a></code> attribute, and the names
   currently in the <a href="#past-names-map">past names map</a>.</p>
 
-  <p>The <dfn id="dom-form-nameditem" title="dom-form-namedItem"><code>namedItem(<var title="">name</var>)</code></dfn> method, when called, must run the
-  following steps:</p>
+  <p>When a <code><a href="#the-form-element">form</a></code> element is <dfn id="dom-form-nameditem" title="dom-form-namedItem">indexed for named property
+  retrieval</dfn>, the user agent must run the following steps:</p>
 
   <ol><li>
 

Index: spec.html
===================================================================
RCS file: /sources/public/html5/spec/spec.html,v
retrieving revision 1.1296
retrieving revision 1.1297
diff -u -d -r1.1296 -r1.1297
--- spec.html	14 Oct 2010 08:16:59 -0000	1.1296
+++ spec.html	14 Oct 2010 08:47:12 -0000	1.1297
@@ -367,7 +367,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.4499.
+This is revision 1.4501.
    </p> 
      <p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a>
    &#169; 2010 <a href="http://www.w3.org/"><abbr title="World Wide

Received on Thursday, 14 October 2010 08:47:31 UTC