[html5] r7453 - [giow] (3) Improve compatibility for <embed hidden> Fixing https://www.w3.org/Bu [...]

whatwg at whatwg.org whatwg at whatwg.org
Thu Oct 11 12:55:49 PDT 2012


Author: ianh
Date: 2012-10-11 12:55:47 -0700 (Thu, 11 Oct 2012)
New Revision: 7453

Modified:
   complete.html
   index
   source
Log:
[giow] (3) Improve compatibility for <embed hidden>
Fixing https://www.w3.org/Bugs/Public/show_bug.cgi?id=15133
Affected topics: Rendering

Modified: complete.html
===================================================================
--- complete.html	2012-10-10 23:20:41 UTC (rev 7452)
+++ complete.html	2012-10-11 19:55:47 UTC (rev 7453)
@@ -249,7 +249,7 @@
 
   <header class=head id=head><p><a class=logo href=http://www.whatwg.org/><img alt=WHATWG height=101 src=/images/logo width=101></a></p>
    <hgroup><h1 class=allcaps>HTML</h1>
-    <h2 class="no-num no-toc">Living Standard — Last Updated 10 October 2012</h2>
+    <h2 class="no-num no-toc">Living Standard — Last Updated 11 October 2012</h2>
    </hgroup><dl><dt><strong>Web developer edition:</strong></dt>
     <dd><strong><a href=http://developers.whatwg.org/>http://developers.whatwg.org/</a></strong></dd>
     <dt>Multiple-page version:</dt>
@@ -97190,8 +97190,10 @@
 input[type=hidden i], link, menu[type=context i], meta, noembed, noframes,
 param, rp, script, source, style, track, title {
   display: none;
-}</pre>
+}
 
+embed[hidden] { display: inline; height: 0; width: 0; }</pre> <!-- because for legacy reasons it still needs to instantiate the plugin -->
+
   <p>The user agent is expected to force the 'display' property of
   <code><a href=#the-noscript-element>noscript</a></code> elements for whom <a href=#concept-n-script title=concept-n-script>scripting is enabled</a> to compute to
   'none', irrespective of CSS rules.</p>

Modified: index
===================================================================
--- index	2012-10-10 23:20:41 UTC (rev 7452)
+++ index	2012-10-11 19:55:47 UTC (rev 7453)
@@ -249,7 +249,7 @@
 
   <header class=head id=head><p><a class=logo href=http://www.whatwg.org/><img alt=WHATWG height=101 src=/images/logo width=101></a></p>
    <hgroup><h1 class=allcaps>HTML</h1>
-    <h2 class="no-num no-toc">Living Standard — Last Updated 10 October 2012</h2>
+    <h2 class="no-num no-toc">Living Standard — Last Updated 11 October 2012</h2>
    </hgroup><dl><dt><strong>Web developer edition:</strong></dt>
     <dd><strong><a href=http://developers.whatwg.org/>http://developers.whatwg.org/</a></strong></dd>
     <dt>Multiple-page version:</dt>
@@ -97190,8 +97190,10 @@
 input[type=hidden i], link, menu[type=context i], meta, noembed, noframes,
 param, rp, script, source, style, track, title {
   display: none;
-}</pre>
+}
 
+embed[hidden] { display: inline; height: 0; width: 0; }</pre> <!-- because for legacy reasons it still needs to instantiate the plugin -->
+
   <p>The user agent is expected to force the 'display' property of
   <code><a href=#the-noscript-element>noscript</a></code> elements for whom <a href=#concept-n-script title=concept-n-script>scripting is enabled</a> to compute to
   'none', irrespective of CSS rules.</p>

Modified: source
===================================================================
--- source	2012-10-10 23:20:41 UTC (rev 7452)
+++ source	2012-10-11 19:55:47 UTC (rev 7453)
@@ -112673,8 +112673,10 @@
 input[type=hidden i], link, menu[type=context i], meta, noembed, noframes,
 param, rp, script, source, style, track, title {
   display: none;
-}</pre>
+}
 
+embed[hidden] { display: inline; height: 0; width: 0; }</pre> <!-- because for legacy reasons it still needs to instantiate the plugin -->
+
   <p>The user agent is expected to force the 'display' property of
   <code>noscript</code> elements for whom <span
   title="concept-n-script">scripting is enabled</span> to compute to




More information about the Commit-Watchers mailing list