Skip to content

Commit 9ec5a69

Browse files
committed
[css-variables] Add DoC for 2014 LC.
1 parent e6e2164 commit 9ec5a69

File tree

2 files changed

+171
-0
lines changed

2 files changed

+171
-0
lines changed

css-variables/issues-lc-20140506.html

+115
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,115 @@
1+
<!DOCTYPE html>
2+
<meta charset="utf-8">
3+
<title>CSS Custom Properties for Cascading Variables Module Level 1 Disposition of Comments for 2014-05-06 LCWD</title>
4+
<style type="text/css">
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 Custom Properties for Cascading Variables Module Level 1 Disposition of Comments for 2014-05-06 LCWD</h1>
14+
15+
<p>Last call document: <a href="http://www.w3.org/TR/2014/WD-css-variables-1-20140506/">http://www.w3.org/TR/2014/WD-css-variables-1-20140506/</a>
16+
17+
<p>Editor's draft: <a href="http://dev.w3.org/csswg/css-variables-1/">http://dev.w3.org/csswg/css-variables-1/</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: Serializing shorthands isn't fully specified
37+
From: John Daggett
38+
Comment: https://lists.w3.org/Archives/Public/www-style/2014Aug/0210.html
39+
Response: https://lists.w3.org/Archives/Public/www-style/2014Aug/0315.html
40+
Closed: Accepted
41+
Resolved: Bugfix</pre>
42+
<pre class='r' id='issue-2'>
43+
Issue 2. <a href='#issue-2'>#</a>
44+
Summary: -- prefix is ugly
45+
From: anonymous web author, carried along by Daniel Glazman
46+
Comment: https://lists.w3.org/Archives/Public/www-style/2014May/0031.html
47+
Response: https://lists.w3.org/Archives/Public/www-style/2014May/0031.html
48+
Closed: Rejected
49+
Resolved: https://lists.w3.org/Archives/Public/www-style/2014Mar/0467.html</pre>
50+
<pre class='a' id='issue-3'>
51+
Issue 3. <a href='#issue-3'>#</a>
52+
Summary: Create a "mixin"-like syntax instead.
53+
From: Rafał Pietrak
54+
Comment: https://lists.w3.org/Archives/Public/www-style/2014Jun/0027.html
55+
Response: https://lists.w3.org/Archives/Public/www-style/2014Jun/0028.html
56+
Closed: Rejected
57+
Verified: https://lists.w3.org/Archives/Public/www-style/2014Jun/0035.html
58+
Resolved: editor's discretion</pre>
59+
<pre class='a' id='issue-4'>
60+
Issue 4. <a href='#issue-4'>#</a>
61+
Summary: 'Case-sensitive' should talk about normalization form/etc
62+
From: Addison Phillips
63+
Comment: https://lists.w3.org/Archives/Public/www-style/2014May/0435.html
64+
Response: https://lists.w3.org/Archives/Public/www-style/2014May/0445.html
65+
Closed: Accepted
66+
Resolved: editorial</pre>
67+
<pre class='a' id='issue-5'>
68+
Issue 5. <a href='#issue-5'>#</a>
69+
Summary: Provide an example of using custom properties with :lang() for i18n
70+
From: Christoph Päper
71+
Comment: https://lists.w3.org/Archives/Public/www-style/2014Jun/0208.html
72+
Response: https://lists.w3.org/Archives/Public/www-style/2014Jun/0213.html
73+
Closed: Accepted
74+
Resolved: editorial</pre>
75+
<pre class='a' id='issue-6'>
76+
Issue 6. <a href='#issue-6'>#</a>
77+
Summary: Let variables be resolvable at rendering time, to help with font palettes
78+
From: Cameron McCormack
79+
Comment: https://lists.w3.org/Archives/Public/www-style/2014Sep/0060.html
80+
Comment: https://lists.w3.org/Archives/Public/public-fx/2015JanMar/0065.html
81+
Response: https://lists.w3.org/Archives/Public/www-style/2015Mar/0354.html
82+
Closed: Rejected
83+
Verified: https://lists.w3.org/Archives/Public/public-fx/2015JanMar/0065.html
84+
Resolved: https://lists.w3.org/Archives/Public/public-fx/2015JanMar/0065.html</pre>
85+
<script>
86+
(function () {
87+
var sheet = document.styleSheets[0];
88+
function addCheckbox(className) {
89+
var element = document.querySelector('*.' + className);
90+
var label = document.createElement('label');
91+
label.innerHTML = element.innerHTML;
92+
element.innerHTML = null;
93+
var check = document.createElement('input');
94+
check.type = 'checkbox';
95+
if (className == 'open') {
96+
check.checked = false;
97+
sheet.insertRule('pre:not(.open)' + '{}', sheet.cssRules.length);
98+
check.onchange = function (e) {
99+
rule.style.display = this.checked ? 'none' : 'block';
100+
}
101+
}
102+
else {
103+
check.checked = true;
104+
sheet.insertRule('pre.' + className + '{}', sheet.cssRules.length);
105+
check.onchange = function (e) {
106+
rule.style.display = this.checked ? 'block' : 'none';
107+
}
108+
}
109+
var rule = sheet.cssRules[sheet.cssRules.length - 1];
110+
element.appendChild(label);
111+
label.insertBefore(check, label.firstChild);
112+
}
113+
['a', 'd', 'fo', 'oi', 'r', 'open'].forEach(addCheckbox);
114+
}());
115+
</script>

css-variables/issues-lc-20140506.txt

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
Draft: http://www.w3.org/TR/2014/WD-css-variables-1-20140506/
2+
Title: CSS Custom Properties for Cascading Variables Module Level 1
3+
... anything else you want here, except 4 dashes ...
4+
5+
----
6+
Issue 1.
7+
Summary: Serializing shorthands isn't fully specified
8+
From: John Daggett
9+
Comment: https://lists.w3.org/Archives/Public/www-style/2014Aug/0210.html
10+
Response: https://lists.w3.org/Archives/Public/www-style/2014Aug/0315.html
11+
Closed: Accepted
12+
Resolved: Bugfix
13+
----
14+
Issue 2.
15+
Summary: -- prefix is ugly
16+
From: anonymous web author, carried along by Daniel Glazman
17+
Comment: https://lists.w3.org/Archives/Public/www-style/2014May/0031.html
18+
Response: https://lists.w3.org/Archives/Public/www-style/2014May/0031.html
19+
Closed: Rejected
20+
Resolved: https://lists.w3.org/Archives/Public/www-style/2014Mar/0467.html
21+
----
22+
Issue 3.
23+
Summary: Create a "mixin"-like syntax instead.
24+
From: Rafał Pietrak
25+
Comment: https://lists.w3.org/Archives/Public/www-style/2014Jun/0027.html
26+
Response: https://lists.w3.org/Archives/Public/www-style/2014Jun/0028.html
27+
Closed: Rejected
28+
Verified: https://lists.w3.org/Archives/Public/www-style/2014Jun/0035.html
29+
Resolved: editor's discretion
30+
----
31+
Issue 4.
32+
Summary: 'Case-sensitive' should talk about normalization form/etc
33+
From: Addison Phillips
34+
Comment: https://lists.w3.org/Archives/Public/www-style/2014May/0435.html
35+
Response: https://lists.w3.org/Archives/Public/www-style/2014May/0445.html
36+
Closed: Accepted
37+
Resolved: editorial
38+
----
39+
Issue 5.
40+
Summary: Provide an example of using custom properties with :lang() for i18n
41+
From: Christoph Päper
42+
Comment: https://lists.w3.org/Archives/Public/www-style/2014Jun/0208.html
43+
Response: https://lists.w3.org/Archives/Public/www-style/2014Jun/0213.html
44+
Closed: Accepted
45+
Resolved: editorial
46+
----
47+
Issue 6.
48+
Summary: Let variables be resolvable at rendering time, to help with font palettes
49+
From: Cameron McCormack
50+
Comment: https://lists.w3.org/Archives/Public/www-style/2014Sep/0060.html
51+
Comment: https://lists.w3.org/Archives/Public/public-fx/2015JanMar/0065.html
52+
Response: https://lists.w3.org/Archives/Public/www-style/2015Mar/0354.html
53+
Closed: Rejected
54+
Verified: https://lists.w3.org/Archives/Public/public-fx/2015JanMar/0065.html
55+
Resolved: https://lists.w3.org/Archives/Public/public-fx/2015JanMar/0065.html
56+
----

0 commit comments

Comments
 (0)