Skip to content

Commit ffcaf56

Browse files
committed
[css-conditional-3] start new issues list
1 parent cd4f0cd commit ffcaf56

File tree

1 file changed

+75
-0
lines changed

1 file changed

+75
-0
lines changed
Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
<!DOCTYPE html>
2+
<meta charset="utf-8">
3+
<title>CSS Conditional Rules Level 3 Disposition of Comments for 2020-12-08 CR</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>CSS Conditional Rules Level 3 Disposition of Comments for 2020-12-08 CR</h1>
14+
15+
<p>Review document: <a href="https://www.w3.org/TR/2020/CR-css-conditional-3-20201208/">https://www.w3.org/TR/2020/CR-css-conditional-3-20201208/</a>
16+
17+
<p>Editor's draft: <a href="http://dev.w3.org/csswg/css-conditional-3/">http://dev.w3.org/csswg/css-conditional-3/</a>
18+
19+
<p>The following color coding convention is used for comments:</p>
20+
21+
<ul>
22+
<li class="a">Accepted or Rejected and positive response
23+
<li class="r">Rejected and no response
24+
<li class="fo">Rejected and negative response
25+
<li class="d">Deferred
26+
<li class="oi">Out-of-Scope or Invalid and not verified
27+
</ul>
28+
29+
<p class=open>Open issues are marked like this</p>
30+
31+
<p>An issue can be closed as <code>Accepted</code>, <code>OutOfScope</code>,
32+
<code>Invalid</code>, <code>Rejected</code>, or <code>Retracted</code>.
33+
<code>Verified</code> indicates commentor's acceptance of the response.</p>
34+
<pre class='a' id='issue-1'>
35+
Issue 1. <a href='#issue-1'>#</a>
36+
Summary: Inconsistent phrasing around placement of @import rules
37+
From: Jeffrey Yasskin
38+
Comment: <a href='https://github.com/w3c/csswg-drafts/issues/5697'>https://github.com/w3c/csswg-drafts/issues/5697</a>
39+
Response: <a href='https://github.com/w3c/csswg-drafts/issues/5697#issuecomment-736900734'>https://github.com/w3c/csswg-drafts/issues/5697#issuecomment-736900734</a>
40+
Changes: <a href='https://github.com/w3c/csswg-drafts/commit/1f1722363d933fa34da976f43002e82c8470a155'>https://github.com/w3c/csswg-drafts/commit/1f1722363d933fa34da976f43002e82c8470a155</a>
41+
Closed: Accepted
42+
Resolved: Editorial
43+
Verified: <a href='https://github.com/w3c/csswg-drafts/issues/5697#issuecomment-741909971'>https://github.com/w3c/csswg-drafts/issues/5697#issuecomment-741909971</a>
44+
----</pre>
45+
<script>
46+
(function () {
47+
var sheet = document.styleSheets[0];
48+
function addCheckbox(className) {
49+
var element = document.querySelector('*.' + className);
50+
var label = document.createElement('label');
51+
label.innerHTML = element.innerHTML;
52+
element.innerHTML = null;
53+
var check = document.createElement('input');
54+
check.type = 'checkbox';
55+
if (className == 'open') {
56+
check.checked = false;
57+
sheet.insertRule('pre:not(.open)' + '{}', sheet.cssRules.length);
58+
check.onchange = function (e) {
59+
rule.style.display = this.checked ? 'none' : 'block';
60+
}
61+
}
62+
else {
63+
check.checked = true;
64+
sheet.insertRule('pre.' + className + '{}', sheet.cssRules.length);
65+
check.onchange = function (e) {
66+
rule.style.display = this.checked ? 'block' : 'none';
67+
}
68+
}
69+
var rule = sheet.cssRules[sheet.cssRules.length - 1];
70+
element.appendChild(label);
71+
label.insertBefore(check, label.firstChild);
72+
}
73+
['a', 'd', 'fo', 'oi', 'r', 'open'].forEach(addCheckbox);
74+
}());
75+
</script>

0 commit comments

Comments
 (0)