Skip to content

Commit b8346e1

Browse files
committed
[css-contain] Update DoC
1 parent 7aa3cfa commit b8346e1

File tree

2 files changed

+105
-0
lines changed

2 files changed

+105
-0
lines changed

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

Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
<!DOCTYPE html>
2+
<meta charset="utf-8">
3+
<title>CSS Contain Level 1 Disposition of Comments for 2019-04-30 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 2019-04-30 CR</h1>
14+
15+
<p>Review document: <a href="https://www.w3.org/TR/2019/CR-css-contain-1-20190430/">https://www.w3.org/TR/2019/CR-css-contain-1-20190430/</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+
<pre class='a' id='issue-1'>
35+
Issue 1. <a href='#issue-1'>#</a>
36+
Summary: Improve cross-spec definition linking
37+
From: Daniel Holbert
38+
Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3889'>https://github.com/w3c/csswg-drafts/issues/3889</a>
39+
Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3889#issuecomment-490202368'>https://github.com/w3c/csswg-drafts/issues/3889#issuecomment-490202368</a>
40+
Response: <a href='https://github.com/w3c/csswg-drafts/pull/3898'>https://github.com/w3c/csswg-drafts/pull/3898</a>
41+
Closed: Accepted
42+
Resolved: Editorial</pre>
43+
<pre class='oi' id='issue-2'>
44+
Issue 2. <a href='#issue-2'>#</a>
45+
Summary: contain:size for grid containers is underspecified
46+
From: Mats Palmgren
47+
Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3892'>https://github.com/w3c/csswg-drafts/issues/3892</a>
48+
Response: <a href='https://github.com/w3c/csswg-drafts/issues/3892#issuecomment-490203339'>https://github.com/w3c/csswg-drafts/issues/3892#issuecomment-490203339</a>
49+
Comment: <a href='https://github.com/w3c/csswg-drafts/issues/3892#issuecomment-490227116'>https://github.com/w3c/csswg-drafts/issues/3892#issuecomment-490227116</a>
50+
Response: <a href='https://github.com/w3c/csswg-drafts/issues/3892#issuecomment-490255708'>https://github.com/w3c/csswg-drafts/issues/3892#issuecomment-490255708</a>
51+
Closed: Invalid
52+
Resolved: Editors' discretion</pre>
53+
<script>
54+
(function () {
55+
var sheet = document.styleSheets[0];
56+
function addCheckbox(className) {
57+
var element = document.querySelector('*.' + className);
58+
var label = document.createElement('label');
59+
label.innerHTML = element.innerHTML;
60+
element.innerHTML = null;
61+
var check = document.createElement('input');
62+
check.type = 'checkbox';
63+
if (className == 'open') {
64+
check.checked = false;
65+
sheet.insertRule('pre:not(.open)' + '{}', sheet.cssRules.length);
66+
check.onchange = function (e) {
67+
rule.style.display = this.checked ? 'none' : 'block';
68+
}
69+
}
70+
else {
71+
check.checked = true;
72+
sheet.insertRule('pre.' + className + '{}', sheet.cssRules.length);
73+
check.onchange = function (e) {
74+
rule.style.display = this.checked ? 'block' : 'none';
75+
}
76+
}
77+
var rule = sheet.cssRules[sheet.cssRules.length - 1];
78+
element.appendChild(label);
79+
label.insertBefore(check, label.firstChild);
80+
}
81+
['a', 'd', 'fo', 'oi', 'r', 'open'].forEach(addCheckbox);
82+
}());
83+
</script>

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

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
Draft: https://www.w3.org/TR/2019/CR-css-contain-1-20190430/
2+
Title: CSS Contain Level 1
3+
4+
----
5+
Issue 1.
6+
Summary: Improve cross-spec definition linking
7+
From: Daniel Holbert
8+
Comment: https://github.com/w3c/csswg-drafts/issues/3889
9+
Comment: https://github.com/w3c/csswg-drafts/issues/3889#issuecomment-490202368
10+
Response: https://github.com/w3c/csswg-drafts/pull/3898
11+
Closed: Accepted
12+
Resolved: Editorial
13+
----
14+
Issue 2.
15+
Summary: contain:size for grid containers is underspecified
16+
From: Mats Palmgren
17+
Comment: https://github.com/w3c/csswg-drafts/issues/3892
18+
Response: https://github.com/w3c/csswg-drafts/issues/3892#issuecomment-490203339
19+
Comment: https://github.com/w3c/csswg-drafts/issues/3892#issuecomment-490227116
20+
Response: https://github.com/w3c/csswg-drafts/issues/3892#issuecomment-490255708
21+
Closed: Invalid
22+
Resolved: Editors' discretion

0 commit comments

Comments
 (0)