Skip to content

Commit 0b27f53

Browse files
committed
[css-counter-styles] Add DoC for previous LC draft.
--HG-- extra : rebase_source : 891e5594d343f5f83c7155c37fbeabb409e2794c
1 parent 3924710 commit 0b27f53

2 files changed

Lines changed: 84 additions & 0 deletions

File tree

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
<!DOCTYPE html>
2+
<meta charset="utf-8">
3+
<title>CSS Counter Styles Level 3 Disposition of Comments for 2014-08-26 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 Counter Styles Level 3 Disposition of Comments for 2014-08-26 LCWD</h1>
14+
15+
<p>Last call document: <a href="http://www.w3.org/TR/2013/WD-css-counter-styles-3-20140826/">http://www.w3.org/TR/2013/WD-css-counter-styles-3-20140826/</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: Include more counter styles that are interoperably implemented.
37+
From: Jonathan Kew
38+
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2014Sep/0113.html'>http://lists.w3.org/Archives/Public/www-style/2014Sep/0113.html</a>
39+
Response: <a href='http://lists.w3.org/Archives/Public/www-style/2014Sep/0390.html'>http://lists.w3.org/Archives/Public/www-style/2014Sep/0390.html</a>
40+
Closed: Accepted
41+
Resolved: Editors' discretion</pre>
42+
<script>
43+
(function () {
44+
var sheet = document.styleSheets[0];
45+
function addCheckbox(className) {
46+
var element = document.querySelector('*.' + className);
47+
var label = document.createElement('label');
48+
label.innerHTML = element.innerHTML;
49+
element.innerHTML = null;
50+
var check = document.createElement('input');
51+
check.type = 'checkbox';
52+
if (className == 'open') {
53+
check.checked = false;
54+
sheet.insertRule('pre:not(.open)' + '{}', sheet.cssRules.length);
55+
check.onchange = function (e) {
56+
rule.style.display = this.checked ? 'none' : 'block';
57+
}
58+
}
59+
else {
60+
check.checked = true;
61+
sheet.insertRule('pre.' + className + '{}', sheet.cssRules.length);
62+
check.onchange = function (e) {
63+
rule.style.display = this.checked ? 'block' : 'none';
64+
}
65+
}
66+
var rule = sheet.cssRules[sheet.cssRules.length - 1];
67+
element.appendChild(label);
68+
label.insertBefore(check, label.firstChild);
69+
}
70+
['a', 'd', 'fo', 'oi', 'r', 'open'].forEach(addCheckbox);
71+
}());
72+
</script>
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
Draft: http://www.w3.org/TR/2013/WD-css-counter-styles-3-20140826/
2+
Title: CSS Counter Styles Level 3
3+
4+
----
5+
Issue 1.
6+
Summary: Include more counter styles that are interoperably implemented.
7+
From: Jonathan Kew
8+
Comment: http://lists.w3.org/Archives/Public/www-style/2014Sep/0113.html
9+
Response: http://lists.w3.org/Archives/Public/www-style/2014Sep/0390.html
10+
Closed: Accepted
11+
Resolved: Editors' discretion
12+
----

0 commit comments

Comments
 (0)