- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 25 Feb 2010 04:34:12 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv9509
Modified Files:
Overview.html
Log Message:
Make <applet> more consistent with <object>. (whatwg r4807)
Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.3855
retrieving revision 1.3856
diff -u -d -r1.3855 -r1.3856
--- Overview.html 25 Feb 2010 04:03:23 -0000 1.3855
+++ Overview.html 25 Feb 2010 04:34:07 -0000 1.3856
@@ -17632,7 +17632,6 @@
+ attributes of the element, in source order
+ a synthesised 'src' attribute, if there was no 'src' but
there was a 'data', with the value of the 'data' attribute
- + PARAM/null
+ the params, in source order
(WebKit does something different still)
- the HIDDEN attribute (might be moot now)
@@ -63827,7 +63826,9 @@
obsoleted so that all extension frameworks (Java, .NET, Flash, etc)
are handled in a consistent manner.</p>
- <p id="sandboxPluginApplet">When the element is not <a href="#in-a-document">in a
+ <p id="sandboxPluginApplet">When the element is still in the
+ <a href="#stack-of-open-elements">stack of open elements</a> of an <a href="#html-parser">HTML parser</a>
+ or <a href="#xml-parser">XML parser</a>, and when the element is not <a href="#in-a-document">in a
<code>Document</code></a>, and when the element's document is not
<a href="#fully-active">fully active</a>, and when the element's
<code><a href="#document">Document</a></code>'s <a href="#browsing-context">browsing context</a> had its
@@ -63845,9 +63846,10 @@
<p>Otherwise, the user agent should instantiate a Java Language
runtime <a href="#plugin">plugin</a>, and should pass the names and values of
- all the attributes on the element, and <!-- then a parameter named
- "PARAM" whose value is null, and then --> all the names and values
- of <a href="#concept-param-parameter" title="concept-param-parameter">parameters</a> given by
+ all the attributes on the element, in the order they were added to
+ the element, with the attributes added by the parser being ordered
+ in source order, and then a parameter named "PARAM" whose value is
+ null, and then all the names and values of <a href="#concept-param-parameter" title="concept-param-parameter">parameters</a> given by
<code><a href="#the-param-element">param</a></code> elements that are children of the
<code><a href="#the-applet-element">applet</a></code> element, in <a href="#tree-order">tree order</a>, to the
<a href="#plugin">plugin</a> used. If the <a href="#plugin">plugin</a> supports a
Received on Thursday, 25 February 2010 04:34:13 UTC