Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[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

git-svn-id: http://svn.whatwg.org/webapps@8197 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Sep 24, 2013
1 parent 2b70548 commit 1adbeef
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 5 deletions.
9 changes: 7 additions & 2 deletions complete.html
Expand Up @@ -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 &mdash; Last Updated 23 September 2013</h2>
<h2 class="no-num no-toc">Living Standard &mdash; 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>
Expand Down Expand Up @@ -94904,7 +94904,11 @@ <h4 id=flow-content-1><span class=secno>14.3.3 </span>Flow content</h4>
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>
Expand Down Expand Up @@ -95303,6 +95307,7 @@ <h4 id=quotes><span class=secno>14.3.6 </span>Quotes</h4>
:root:lang(nyn), :not(:lang(nyn)) &gt; :lang(nyn) { quotes: '\201c' '\201d' '\2018' '\2019' } /* &ldquo; &rdquo; &lsquo; &rsquor; */
:root:lang(pa), :not(:lang(pa)) &gt; :lang(pa) { quotes: '\0027' '\0027' '\0022' '\0022' } /* ' ' " " */
:root:lang(pl), :not(:lang(pl)) &gt; :lang(pl) { quotes: '\201e' '\201d' '\00ab' '\00bb' } /* &ldquor; &rdquo; &laquo; &raquo; */
:root:lang(prg), :not(:lang(prg)) &gt; :lang(prg) { quotes: '\201c' '\201d' '\2018' '\2019' } /* &ldquo; &rdquo; &lsquo; &rsquor; */
:root:lang(pt), :not(:lang(pt)) &gt; :lang(pt) { quotes: '\201c' '\201d' '\2018' '\2019' } /* &ldquo; &rdquo; &lsquo; &rsquor; */
:root:lang(pt-PT), :not(:lang(pt-PT)) &gt; :lang(pt-PT) { quotes: '\00ab' '\00bb' '\201c' '\201d' } /* &laquo; &raquo; &ldquo; &rdquo; */
:root:lang(rn), :not(:lang(rn)) &gt; :lang(rn) { quotes: '\201d' '\201d' '\2019' '\2019' } /* &rdquo; &rdquo; &rsquor; &rsquor; */
Expand Down
9 changes: 7 additions & 2 deletions index
Expand Up @@ -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 &mdash; Last Updated 23 September 2013</h2>
<h2 class="no-num no-toc">Living Standard &mdash; 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>
Expand Down Expand Up @@ -94904,7 +94904,11 @@ dialog {
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>
Expand Down Expand Up @@ -95303,6 +95307,7 @@ textarea[dir=auto i], pre[dir=auto i] { unicode-bidi: plaintext; }</pre>
:root:lang(nyn), :not(:lang(nyn)) &gt; :lang(nyn) { quotes: '\201c' '\201d' '\2018' '\2019' } /* &ldquo; &rdquo; &lsquo; &rsquor; */
:root:lang(pa), :not(:lang(pa)) &gt; :lang(pa) { quotes: '\0027' '\0027' '\0022' '\0022' } /* ' ' " " */
:root:lang(pl), :not(:lang(pl)) &gt; :lang(pl) { quotes: '\201e' '\201d' '\00ab' '\00bb' } /* &ldquor; &rdquo; &laquo; &raquo; */
:root:lang(prg), :not(:lang(prg)) &gt; :lang(prg) { quotes: '\201c' '\201d' '\2018' '\2019' } /* &ldquo; &rdquo; &lsquo; &rsquor; */
:root:lang(pt), :not(:lang(pt)) &gt; :lang(pt) { quotes: '\201c' '\201d' '\2018' '\2019' } /* &ldquo; &rdquo; &lsquo; &rsquor; */
:root:lang(pt-PT), :not(:lang(pt-PT)) &gt; :lang(pt-PT) { quotes: '\00ab' '\00bb' '\201c' '\201d' } /* &laquo; &raquo; &ldquo; &rdquo; */
:root:lang(rn), :not(:lang(rn)) &gt; :lang(rn) { quotes: '\201d' '\201d' '\2019' '\2019' } /* &rdquo; &rdquo; &rsquor; &rsquor; */
Expand Down
6 changes: 5 additions & 1 deletion source
Expand Up @@ -106073,7 +106073,11 @@ dialog {
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>
Expand Down

0 comments on commit 1adbeef

Please sign in to comment.