-
Notifications
You must be signed in to change notification settings - Fork 707
/
Copy pathissues-lc-2015.html
91 lines (84 loc) · 4.26 KB
/
issues-lc-2015.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Cascading and Inheritance Level 4 Disposition of Comments for 2015-09-08 LCWD</title>
<style type="text/css">
pre { border: solid thin silver; padding: 0.2em; white-space: normal; }
pre > span { display: block; white-space: pre; }
:not(pre).a { background: lightgreen }
:not(pre).d { background: lightblue }
:not(pre).oi { background: yellow }
:not(pre).r { background: orange }
:not(pre).fo { background: red }
.open { border: solid red; }
:target { box-shadow: 0.25em 0.25em 0.25em; }
</style>
<h1>CSS Cascading and Inheritance Level 4 Disposition of Comments for 2015-09-08 LCWD</h1>
<p>Dated Draft: <a href="http://www.w3.org/TR/2015/WD-css-cascade-4-20150908/">http://www.w3.org/TR/2015/WD-css-cascade-4-20150908/</a>
<p>Editor's Draft: <a href="http://dev.w3.org/csswg/css-cascade-4/">http://dev.w3.org/csswg/css-cascade-4/</a>
<p>The following color coding convention is used for comments:</p>
<ul>
<li class="a">Accepted or Rejected and positive response
<li class="r">Rejected and no response
<li class="fo">Rejected and negative response
<li class="d">Deferred
<li class="oi">Out-of-Scope or Invalid and not verified
</ul>
<p class=open>Open issues are marked like this</p>
<p>An issue can be closed as <code>Accepted</code>, <code>OutOfScope</code>,
<code>Invalid</code>, <code>Rejected</code>, or <code>Retracted</code>.
<code>Verified</code> indicates commentor's acceptance of the response.</p>
<pre class=' a' id='issue-1'>
<span>Issue 1. <a href='#issue-1'>#</a></span>
<span>Summary: Add example for @import syntax</span>
<span>From: Tom Potts</span>
<span>Comment: <a href='https://lists.w3.org/Archives/Public/www-style/2015Sep/0073.html'>https://lists.w3.org/Archives/Public/www-style/2015Sep/0073.html</a></span>
<span>Response: <a href='https://lists.w3.org/Archives/Public/www-style/2015Dec/0081.html'>https://lists.w3.org/Archives/Public/www-style/2015Dec/0081.html</a></span>
<span class="a">Closed: Accepted</span>
<span>Verified: </span>
<span>Resolved: Editorial</span></pre>
<pre class=' oi' id='issue-2'>
<span>Issue 2. <a href='#issue-2'>#</a></span>
<span>Summary: Question wrt a11y of transition effects</span>
<span>From: Chaals McCathie Nevile</span>
<span>Comment: <a href='https://lists.w3.org/Archives/Public/www-style/2015Sep/0065.html'>https://lists.w3.org/Archives/Public/www-style/2015Sep/0065.html</a></span>
<span>Response: <a href='https://lists.w3.org/Archives/Public/www-style/2015Sep/0066.html'>https://lists.w3.org/Archives/Public/www-style/2015Sep/0066.html</a></span>
<span>Response: <a href='https://lists.w3.org/Archives/Public/www-style/2015Sep/0067.html'>https://lists.w3.org/Archives/Public/www-style/2015Sep/0067.html</a></span>
<span class="oi">Closed: Invalid</span></pre>
<pre class=' oi' id='issue-3'>
<span>Issue 3. <a href='#issue-3'>#</a></span>
<span>Summary: Transitions vs Animations</span>
<span>From: Estelle Weyl</span>
<span>Comment: <a href='https://lists.w3.org/Archives/Public/www-style/2015Sep/0244.html'>https://lists.w3.org/Archives/Public/www-style/2015Sep/0244.html</a></span>
<span>Response: <a href='https://lists.w3.org/Archives/Public/www-style/2015Sep/0261.html'>https://lists.w3.org/Archives/Public/www-style/2015Sep/0261.html</a></span>
<span class="oi">Closed: Invalid</span></pre>
<script>
(function () {
var sheet = document.styleSheets[0];
function addCheckbox(className) {
var element = document.querySelector('*.' + className);
var span = document.createElement('span');
span.innerHTML = element.innerHTML;
element.innerHTML = null;
var check = document.createElement('input');
check.type = 'checkbox';
if (className == 'open') {
check.checked = false;
sheet.insertRule('pre:not(.open)' + '{}', sheet.cssRules.length);
check.onchange = function (e) {
rule.style.display = this.checked ? 'none' : 'block';
}
}
else {
check.checked = true;
sheet.insertRule('pre.' + className + '{}', sheet.cssRules.length);
check.onchange = function (e) {
rule.style.display = this.checked ? 'block' : 'none';
}
}
var rule = sheet.cssRules[sheet.cssRules.length - 1];
element.appendChild(check);
element.appendChild(span);
}
['a', 'd', 'fo', 'oi', 'r', 'open'].forEach(addCheckbox);
}());
</script>