[html5] r8197 - [giow] (1) dialog::backdrop needs positioning, it isn't _that_ magical Fixing ht [...]
whatwg at whatwg.org
whatwg at whatwg.org
Tue Sep 24 15:20:33 PDT 2013
Author: ianh
Date: 2013-09-24 15:20:31 -0700 (Tue, 24 Sep 2013)
New Revision: 8197
Modified:
complete.html
index
source
Log:
[giow] (1) dialog::backdrop needs positioning, it isn't _that_ magical
Fixing https://www.w3.org/Bugs/Public/show_bug.cgi?id=23298
Affected topics: Rendering
Modified: complete.html
===================================================================
--- complete.html 2013-09-23 21:42:43 UTC (rev 8196)
+++ complete.html 2013-09-24 22:20:31 UTC (rev 8197)
@@ -256,7 +256,7 @@
<header class=head id=head><p><a href=http://www.whatwg.org/ class=logo><img width=101 src=/images/logo alt=WHATWG height=101></a></p>
<hgroup><h1 class=allcaps>HTML</h1>
- <h2 class="no-num no-toc">Living Standard — Last Updated 23 September 2013</h2>
+ <h2 class="no-num no-toc">Living Standard — Last Updated 24 September 2013</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>
@@ -94904,7 +94904,11 @@
background: white;
color: black;
}
-dialog::backdrop { background: rgba(0,0,0,0.1); }</pre>
+dialog::backdrop {
+ position: fixed;
+ top: 0; right: 0; bottom: 0; left: 0;
+ background: rgba(0,0,0,0.1);
+}</pre>
<p>The following rules are also expected to apply, as
<a href=#presentational-hints>presentational hints</a>:</p>
@@ -95303,6 +95307,7 @@
:root:lang(nyn), :not(:lang(nyn)) > :lang(nyn) { quotes: '\201c' '\201d' '\2018' '\2019' } /* “ ” ‘ ’ */
:root:lang(pa), :not(:lang(pa)) > :lang(pa) { quotes: '\0027' '\0027' '\0022' '\0022' } /* ' ' " " */
:root:lang(pl), :not(:lang(pl)) > :lang(pl) { quotes: '\201e' '\201d' '\00ab' '\00bb' } /* „ ” « » */
+:root:lang(prg), :not(:lang(prg)) > :lang(prg) { quotes: '\201c' '\201d' '\2018' '\2019' } /* “ ” ‘ ’ */
:root:lang(pt), :not(:lang(pt)) > :lang(pt) { quotes: '\201c' '\201d' '\2018' '\2019' } /* “ ” ‘ ’ */
:root:lang(pt-PT), :not(:lang(pt-PT)) > :lang(pt-PT) { quotes: '\00ab' '\00bb' '\201c' '\201d' } /* « » “ ” */
:root:lang(rn), :not(:lang(rn)) > :lang(rn) { quotes: '\201d' '\201d' '\2019' '\2019' } /* ” ” ’ ’ */
Modified: index
===================================================================
--- index 2013-09-23 21:42:43 UTC (rev 8196)
+++ index 2013-09-24 22:20:31 UTC (rev 8197)
@@ -256,7 +256,7 @@
<header class=head id=head><p><a href=http://www.whatwg.org/ class=logo><img width=101 src=/images/logo alt=WHATWG height=101></a></p>
<hgroup><h1 class=allcaps>HTML</h1>
- <h2 class="no-num no-toc">Living Standard — Last Updated 23 September 2013</h2>
+ <h2 class="no-num no-toc">Living Standard — Last Updated 24 September 2013</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>
@@ -94904,7 +94904,11 @@
background: white;
color: black;
}
-dialog::backdrop { background: rgba(0,0,0,0.1); }</pre>
+dialog::backdrop {
+ position: fixed;
+ top: 0; right: 0; bottom: 0; left: 0;
+ background: rgba(0,0,0,0.1);
+}</pre>
<p>The following rules are also expected to apply, as
<a href=#presentational-hints>presentational hints</a>:</p>
@@ -95303,6 +95307,7 @@
:root:lang(nyn), :not(:lang(nyn)) > :lang(nyn) { quotes: '\201c' '\201d' '\2018' '\2019' } /* “ ” ‘ ’ */
:root:lang(pa), :not(:lang(pa)) > :lang(pa) { quotes: '\0027' '\0027' '\0022' '\0022' } /* ' ' " " */
:root:lang(pl), :not(:lang(pl)) > :lang(pl) { quotes: '\201e' '\201d' '\00ab' '\00bb' } /* „ ” « » */
+:root:lang(prg), :not(:lang(prg)) > :lang(prg) { quotes: '\201c' '\201d' '\2018' '\2019' } /* “ ” ‘ ’ */
:root:lang(pt), :not(:lang(pt)) > :lang(pt) { quotes: '\201c' '\201d' '\2018' '\2019' } /* “ ” ‘ ’ */
:root:lang(pt-PT), :not(:lang(pt-PT)) > :lang(pt-PT) { quotes: '\00ab' '\00bb' '\201c' '\201d' } /* « » “ ” */
:root:lang(rn), :not(:lang(rn)) > :lang(rn) { quotes: '\201d' '\201d' '\2019' '\2019' } /* ” ” ’ ’ */
Modified: source
===================================================================
--- source 2013-09-23 21:42:43 UTC (rev 8196)
+++ source 2013-09-24 22:20:31 UTC (rev 8197)
@@ -106073,7 +106073,11 @@
background: white;
color: black;
}
-dialog::backdrop { background: rgba(0,0,0,0.1); }</pre>
+dialog::backdrop {
+ position: fixed;
+ top: 0; right: 0; bottom: 0; left: 0;
+ background: rgba(0,0,0,0.1);
+}</pre>
<p>The following rules are also expected to apply, as
<span>presentational hints</span>:</p>
More information about the Commit-Watchers
mailing list