Skip to content

Commit bf69db4

Browse files
committed
[css-contain] Post publication updates
1 parent e92822b commit bf69db4

5 files changed

Lines changed: 79 additions & 7 deletions

File tree

css-contain-1/Overview.bs

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,12 @@
22
Title: CSS Containment Module Level 1
33
Level: 1
44
Shortname: css-contain
5-
Status: CR
6-
date: 2018-05-24
7-
deadline: 2018-07-23
5+
Status: ED
86
Work Status: Testing
97
Group: csswg
108
ED: https://drafts.csswg.org/css-contain/
119
TR: https://www.w3.org/TR/css-contain-1/
10+
Previous Version: https://www.w3.org/TR/2018/CR-css-contain-1-20180524/
1211
Previous Version: https://www.w3.org/TR/2017/CR-css-contain-1-20170808/
1312
Previous Version: https://www.w3.org/TR/2017/WD-css-contain-1-20170419/
1413
Previous Version: https://www.w3.org/TR/2017/WD-css-contain-1-20170221/
@@ -455,6 +454,11 @@ Answers are provided below.
455454

456455
This appendix is <em>informative</em>.
457456

457+
<h3 id="2018-05-24-changes">Changes from the
458+
<a href="https://www.w3.org/TR/2018/CR-css-contain-1-20180524/">Candidate Recommendation of 24 May 2018</a></h3>
459+
460+
None yet.
461+
458462
<h3 id="2017-08-08-changes">Changes from the
459463
<a href="https://www.w3.org/TR/2017/CR-css-contain-1-20170808/">Candidate Recommendation of 8 August 2017</a></h3>
460464

css-contain-1/issues-2017-cr.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!DOCTYPE html>
22
<meta charset="utf-8">
3-
<title>CSS Contain Level 1 Disposition of Comments for 2017-02-21 WD</title>
3+
<title>CSS Contain Level 1 Disposition of Comments for 2017-08-08 CR</title>
44
<style>
55
.a { background: lightgreen }
66
.d { background: lightblue }
@@ -10,9 +10,9 @@
1010
:target { box-shadow: 0.25em 0.25em 0.25em; }
1111
</style>
1212

13-
<h1>CSS Contain Level 1 Disposition of Comments for 2017-02-21 WD</h1>
13+
<h1>CSS Contain Level 1 Disposition of Comments for 2017-08-08 CR</h1>
1414

15-
<p>Review document: <a href="https://www.w3.org/TR/2017/WD-css-contain-1-20170221/">https://www.w3.org/TR/2017/WD-css-contain-1-20170221/</a>
15+
<p>Review document: <a href="https://www.w3.org/TR/2017/CR-css-contain-1-20170808/">https://www.w3.org/TR/2017/CR-css-contain-1-20170808/</a>
1616

1717
<p>Editor's draft: <a href="http://dev.w3.org/csswg/css-contain-1/">http://dev.w3.org/csswg/css-contain-1/</a>
1818

css-contain-1/issues-2017-cr.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Draft: https://www.w3.org/TR/2017/WD-css-contain-1-20170221/
1+
Draft: https://www.w3.org/TR/2017/CR-css-contain-1-20170808/
22
Title: CSS Contain Level 1
33

44
----

css-contain-1/issues-2018-cr.html

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
<!DOCTYPE html>
2+
<meta charset="utf-8">
3+
<title>CSS Contain Level 1 Disposition of Comments for 2018-05-24 CR</title>
4+
<style>
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 Contain Level 1 Disposition of Comments for 2018-05-24 CR</h1>
14+
15+
<p>Review document: <a href="https://www.w3.org/TR/2018/CR-css-contain-1-20180524/">https://www.w3.org/TR/2018/CR-css-contain-1-20180524/</a>
16+
17+
<p>Editor's draft: <a href="http://dev.w3.org/csswg/css-contain-1/">http://dev.w3.org/csswg/css-contain-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+
<script>
35+
(function () {
36+
var sheet = document.styleSheets[0];
37+
function addCheckbox(className) {
38+
var element = document.querySelector('*.' + className);
39+
var label = document.createElement('label');
40+
label.innerHTML = element.innerHTML;
41+
element.innerHTML = null;
42+
var check = document.createElement('input');
43+
check.type = 'checkbox';
44+
if (className == 'open') {
45+
check.checked = false;
46+
sheet.insertRule('pre:not(.open)' + '{}', sheet.cssRules.length);
47+
check.onchange = function (e) {
48+
rule.style.display = this.checked ? 'none' : 'block';
49+
}
50+
}
51+
else {
52+
check.checked = true;
53+
sheet.insertRule('pre.' + className + '{}', sheet.cssRules.length);
54+
check.onchange = function (e) {
55+
rule.style.display = this.checked ? 'block' : 'none';
56+
}
57+
}
58+
var rule = sheet.cssRules[sheet.cssRules.length - 1];
59+
element.appendChild(label);
60+
label.insertBefore(check, label.firstChild);
61+
}
62+
['a', 'd', 'fo', 'oi', 'r', 'open'].forEach(addCheckbox);
63+
}());
64+
</script>

css-contain-1/issues-2018-cr.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Draft: https://www.w3.org/TR/2018/CR-css-contain-1-20180524/
2+
Title: CSS Contain Level 1
3+
4+
----

0 commit comments

Comments
 (0)