Skip to content

Commit 187ede3

Browse files
committed
[mediaqueries-3] Add output of DoC
1 parent 95d0556 commit 187ede3

File tree

1 file changed

+108
-0
lines changed

1 file changed

+108
-0
lines changed
Lines changed: 108 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,108 @@
1+
<!DOCTYPE html>
2+
<meta charset="utf-8">
3+
<title>Media Queries Level 3 Disposition of Comments for 2012-06-19 REC</title>
4+
<style>
5+
.a { background: lightgreen }
6+
.d { background: lightblue }
7+
.r { background: orange }
8+
.fo { background: red }
9+
.open { border: solid red; padding: 0.2em; }
10+
:target { box-shadow: 0.25em 0.25em 0.25em; }
11+
</style>
12+
13+
<h1>Media Queries Level 3 Disposition of Comments for 2012-06-19 REC</h1>
14+
15+
<p>Review document: <a href="https://www.w3.org/TR/2012/REC-css3-mediaqueries-20120619/">https://www.w3.org/TR/2012/REC-css3-mediaqueries-20120619/</a>
16+
17+
<p>Editor's draft: <a href="https://drafts.csswg.org/mediaqueries-3/">https://drafts.csswg.org/mediaqueries-3/</a></p>
18+
19+
<p>This disposition of comments covers
20+
comments recieved since the original publication
21+
as a Recommendation on 12 June 2012
22+
and through later revisions.
23+
24+
<p>See <a href="https://www.w3.org/Style/2012/MediaQueriesDisposalOfComments.html">https://www.w3.org/Style/2012/MediaQueriesDisposalOfComments.html</a>
25+
for comments on earlier Drafts.
26+
27+
<p>Issues 1 and 2 pretain to
28+
the <a href="https://www.w3.org/TR/2012/REC-css3-mediaqueries-20120619/">12 June 2012 Recommendation</a>.
29+
30+
<p>Issues 3 and 4 pretain to
31+
the updated <a href="https://www.w3.org/TR/2022/REC-mediaqueries-3-20220405/">05 April 2022 Recommendation</a>.
32+
33+
34+
<p>The following color coding convention is used for comments:</p>
35+
36+
<ul>
37+
<li class="a">Accepted or Rejected and positive response
38+
<li class="r">Rejected and no response
39+
<li class="fo">Rejected and negative response
40+
<li class="d">Deferred
41+
<li class="oi">Out-of-Scope or Invalid and not verified
42+
</ul>
43+
44+
<p class=open>Open issues are marked like this</p>
45+
46+
<p>An issue can be closed as <code>Accepted</code>, <code>OutOfScope</code>,
47+
<code>Invalid</code>, <code>Rejected</code>, or <code>Retracted</code>.
48+
<code>Verified</code> indicates commentor's acceptance of the response.</p>
49+
<pre class='a' id='issue-1'>
50+
Issue 1. <a href='#issue-1'>#</a>
51+
Summary: <a href='https://lists.w3.org/Archives/Public/www-style/2012May/0794.html'>https://lists.w3.org/Archives/Public/www-style/2012May/0794.html</a>
52+
From: Kang-Hao (Kenny) Lu
53+
Comment: <a href='https://lists.w3.org/Archives/Public/www-style/2012May/0794.html'>https://lists.w3.org/Archives/Public/www-style/2012May/0794.html</a>
54+
Resolved: <a href='https://lists.w3.org/Archives/Public/www-style/2013May/0783.html'>https://lists.w3.org/Archives/Public/www-style/2013May/0783.html</a>
55+
Closed: Accepted</pre>
56+
<pre class='a' id='issue-2'>
57+
Issue 2. <a href='#issue-2'>#</a>
58+
Summary: &lt;ratio> which is used by MQ is neither in CSS2.1 nor in css3-values
59+
From: Emilio Cobos Álvarez
60+
Comment: <a href='https://github.com/w3c/csswg-drafts/pull/2726'>https://github.com/w3c/csswg-drafts/pull/2726</a>
61+
Closed: Accepted
62+
Resolved: Editorial</pre>
63+
<pre class='a' id='issue-3'>
64+
Issue 3. <a href='#issue-3'>#</a>
65+
Summary: Spelling mistake in the changelog
66+
From: Chris LaChance
67+
Comment: <a href='https://github.com/w3c/csswg-drafts/issues/7198'>https://github.com/w3c/csswg-drafts/issues/7198</a>
68+
Response: <a href='https://github.com/w3c/csswg-drafts/issues/7198#issuecomment-1088452770'>https://github.com/w3c/csswg-drafts/issues/7198#issuecomment-1088452770</a>
69+
Closed: Accepted
70+
Resolved: Editorial</pre>
71+
<pre class='a' id='issue-4'>
72+
Issue 4. <a href='#issue-4'>#</a>
73+
Summary: Restrict 'layer' from the &lt;media-type> production
74+
From: Tab Atkins Jr.
75+
Comment: <a href='https://github.com/w3c/csswg-drafts/issues/7225'>https://github.com/w3c/csswg-drafts/issues/7225</a>
76+
Closed: Accepted
77+
Resolved: <a href='https://github.com/w3c/csswg-drafts/issues/7225#issuecomment-1118015966'>https://github.com/w3c/csswg-drafts/issues/7225#issuecomment-1118015966</a></pre>
78+
<script>
79+
(function () {
80+
var sheet = document.styleSheets[0];
81+
function addCheckbox(className) {
82+
var element = document.querySelector('*.' + className);
83+
var label = document.createElement('label');
84+
label.innerHTML = element.innerHTML;
85+
element.innerHTML = null;
86+
var check = document.createElement('input');
87+
check.type = 'checkbox';
88+
if (className == 'open') {
89+
check.checked = false;
90+
sheet.insertRule('pre:not(.open)' + '{}', sheet.cssRules.length);
91+
check.onchange = function (e) {
92+
rule.style.display = this.checked ? 'none' : 'block';
93+
}
94+
}
95+
else {
96+
check.checked = true;
97+
sheet.insertRule('pre.' + className + '{}', sheet.cssRules.length);
98+
check.onchange = function (e) {
99+
rule.style.display = this.checked ? 'block' : 'none';
100+
}
101+
}
102+
var rule = sheet.cssRules[sheet.cssRules.length - 1];
103+
element.appendChild(label);
104+
label.insertBefore(check, label.firstChild);
105+
}
106+
['a', 'd', 'fo', 'oi', 'r', 'open'].forEach(addCheckbox);
107+
}());
108+
</script>

0 commit comments

Comments
 (0)