Skip to content

Commit 15a84f6

Browse files
committed
[css-counter-styles] Produce DoC
1 parent 24be0aa commit 15a84f6

2 files changed

Lines changed: 86 additions & 0 deletions

File tree

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
<!DOCTYPE html>
2+
<meta charset="utf-8">
3+
<title>CSS Counter Styles Level 3 Disposition of Comments for 2015-02-03 CR</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 Counter Styles Level 3 Disposition of Comments for 2015-02-03 CR</h1>
14+
15+
<p>Last call document: <a href="http://www.w3.org/TR/2015/CR-css-counter-styles-3-20150203/">http://www.w3.org/TR/2015/CR-css-counter-styles-3-20150203/</a>
16+
17+
<p>Editor's draft: <a href="http://dev.w3.org/csswg/css-counter-styles-3/">http://dev.w3.org/csswg/css-counter-styles-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: Some implementations already implement Hebrew past the specified limit.
37+
From: Xidorn Quan
38+
Comment: <a href='https://lists.w3.org/Archives/Public/www-style/2015Apr/0117.html'>https://lists.w3.org/Archives/Public/www-style/2015Apr/0117.html</a>
39+
Response: <a href='https://lists.w3.org/Archives/Public/www-style/2015Apr/0120.html'>https://lists.w3.org/Archives/Public/www-style/2015Apr/0120.html</a>
40+
Response: <a href='https://lists.w3.org/Archives/Public/www-style/2015May/0008.html'>https://lists.w3.org/Archives/Public/www-style/2015May/0008.html</a>
41+
Closed: Accepted
42+
Resolved: <a href='https://lists.w3.org/Archives/Public/www-style/2015Apr/0357.html'>https://lists.w3.org/Archives/Public/www-style/2015Apr/0357.html</a></pre>
43+
<script>
44+
(function () {
45+
var sheet = document.styleSheets[0];
46+
function addCheckbox(className) {
47+
var element = document.querySelector('*.' + className);
48+
var label = document.createElement('label');
49+
label.innerHTML = element.innerHTML;
50+
element.innerHTML = null;
51+
var check = document.createElement('input');
52+
check.type = 'checkbox';
53+
if (className == 'open') {
54+
check.checked = false;
55+
sheet.insertRule('pre:not(.open)' + '{}', sheet.cssRules.length);
56+
check.onchange = function (e) {
57+
rule.style.display = this.checked ? 'none' : 'block';
58+
}
59+
}
60+
else {
61+
check.checked = true;
62+
sheet.insertRule('pre.' + className + '{}', sheet.cssRules.length);
63+
check.onchange = function (e) {
64+
rule.style.display = this.checked ? 'block' : 'none';
65+
}
66+
}
67+
var rule = sheet.cssRules[sheet.cssRules.length - 1];
68+
element.appendChild(label);
69+
label.insertBefore(check, label.firstChild);
70+
}
71+
['a', 'd', 'fo', 'oi', 'r', 'open'].forEach(addCheckbox);
72+
}());
73+
</script>
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Draft: http://www.w3.org/TR/2015/CR-css-counter-styles-3-20150203/
2+
Title: CSS Counter Styles Level 3
3+
4+
----
5+
Issue 1.
6+
Summary: Some implementations already implement Hebrew past the specified limit.
7+
From: Xidorn Quan
8+
Comment: https://lists.w3.org/Archives/Public/www-style/2015Apr/0117.html
9+
Response: https://lists.w3.org/Archives/Public/www-style/2015Apr/0120.html
10+
Response: https://lists.w3.org/Archives/Public/www-style/2015May/0008.html
11+
Closed: Accepted
12+
Resolved: https://lists.w3.org/Archives/Public/www-style/2015Apr/0357.html
13+
----

0 commit comments

Comments
 (0)