Skip to content

Commit 9a58621

Browse files
committed
[css-cascade-4] Add DoC
1 parent 08a00b2 commit 9a58621

File tree

2 files changed

+99
-7
lines changed

2 files changed

+99
-7
lines changed

css-cascade/issues-lc-2015.html

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

css-cascade/issues-lc-2015.txt

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,19 @@ Title: CSS Cascading and Inheritance Level 4
33

44
----
55
Issue 1.
6-
Summary: [summary]
7-
From: [name]
8-
Comment: [url]
9-
Response: [url]
10-
Closed: Accepted/OutOfScope/Invalid/Rejected/Retracted/Deferred ... or replace this line with "Open"
11-
Verified: [url]
12-
Resolved: Editorial/Bugfix (for obvious fixes)/Editor discretion/[url to minutes]
6+
Summary: Add example for @import syntax
7+
From: Tom Potts
8+
Comment: https://lists.w3.org/Archives/Public/www-style/2015Sep/0073.html
9+
Response: https://lists.w3.org/Archives/Public/www-style/2015Dec/0081.html
10+
Closed: Accepted
11+
Verified:
12+
Resolved: Editorial
13+
----
14+
Issue 2.
15+
Summary: Question wrt a11y of transition effects
16+
From: Chaals McCathie Nevile
17+
Comment: https://lists.w3.org/Archives/Public/www-style/2015Sep/0065.html
18+
Response: https://lists.w3.org/Archives/Public/www-style/2015Sep/0066.html
19+
Response: https://lists.w3.org/Archives/Public/www-style/2015Sep/0067.html
20+
Closed: Invalid
1321
----

0 commit comments

Comments
 (0)