Skip to content

Commit d5d9e40

Browse files
committed
[css-grid] Add new issues list.
1 parent 2206a40 commit d5d9e40

2 files changed

Lines changed: 173 additions & 0 deletions

File tree

css-grid/issues-wd-20150806.html

Lines changed: 120 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,120 @@
1+
<!DOCTYPE html>
2+
<meta charset="utf-8">
3+
<title>CSS Grid Layout Level 1 Disposition of Comments for 2015-08-06 WD</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 Grid Layout Level 1 Disposition of Comments for 2015-08-06 WD</h1>
14+
15+
<p>Last call document: <a href="http://www.w3.org/TR/2015/WD-css-grid-1-20150806/">http://www.w3.org/TR/2015/WD-css-grid-1-20150806/</a>
16+
17+
<p>Editor's draft: <a href="http://dev.w3.org/csswg/css-grid-1/">http://dev.w3.org/csswg/css-grid-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='open' id='issue-1'>
35+
Issue 1. <a href='#issue-1'>#</a>
36+
Summary: Allow for centered grids of unknown number of columns
37+
From: François Remy
38+
Comment: <a href='https://lists.w3.org/Archives/Public/www-style/2015Feb/0293.html'>https://lists.w3.org/Archives/Public/www-style/2015Feb/0293.html</a>
39+
Comment: <a href='https://lists.w3.org/Archives/Public/www-style/2015Feb/0313.html'>https://lists.w3.org/Archives/Public/www-style/2015Feb/0313.html</a>
40+
Response: <a href='https://lists.w3.org/Archives/Public/www-style/2015May/0113.html'>https://lists.w3.org/Archives/Public/www-style/2015May/0113.html</a>
41+
Open
42+
Note: Originally Issue 12 in issues-wd-20150108
43+
</pre>
44+
<pre class='open' id='issue-2'>
45+
Issue 2. <a href='#issue-2'>#</a>
46+
Summary: % margins should match block layout
47+
From: Ojan Vafai
48+
Comment: <a href='https://lists.w3.org/Archives/Public/www-style/2015Mar/0273.html'>https://lists.w3.org/Archives/Public/www-style/2015Mar/0273.html</a>
49+
Response: <a href='https://lists.w3.org/Archives/Public/www-style/2015May/0314.html'>https://lists.w3.org/Archives/Public/www-style/2015May/0314.html</a>
50+
Open
51+
Note: Originally Issue 15 in issues-wd-20150108
52+
</pre>
53+
<pre class='open' id='issue-3'>
54+
Issue 3. <a href='#issue-3'>#</a>
55+
Summary: Should the width of a column be included in the track size?
56+
From: fantasai
57+
Comment: <a href='https://lists.w3.org/Archives/Public/www-style/2015Aug/0064.html'>https://lists.w3.org/Archives/Public/www-style/2015Aug/0064.html</a>
58+
Open
59+
</pre>
60+
<pre class='open' id='issue-4'>
61+
Issue 4. <a href='#issue-4'>#</a>
62+
Summary: Require author tools to reorder source to match grid unless requested
63+
From: fantasai
64+
Comment: <a href='https://lists.w3.org/Archives/Public/www-style/2015Jun/0180.html'>https://lists.w3.org/Archives/Public/www-style/2015Jun/0180.html</a>
65+
Open
66+
</pre>
67+
<pre class='open' id='issue-5'>
68+
Issue 5. <a href='#issue-5'>#</a>
69+
Summary: Cross-reference track gaps from grid-template-rows/cols
70+
From: Emil Björklund
71+
Comment: <a href='https://lists.w3.org/Archives/Public/www-style/2015Jul/0396.html'>https://lists.w3.org/Archives/Public/www-style/2015Jul/0396.html</a>
72+
Open
73+
Resolved: Editorial
74+
</pre>
75+
<pre class='open' id='issue-6'>
76+
Issue 6. <a href='#issue-6'>#</a>
77+
Summary: Should abspos % margins match grid items or abspos boxes?
78+
From: Mats Palmgren
79+
Comment: <a href='https://lists.w3.org/Archives/Public/www-style/2015May/0154.html'>https://lists.w3.org/Archives/Public/www-style/2015May/0154.html</a>
80+
Note: See issue 2
81+
Open
82+
</pre>
83+
<pre class='open' id='issue-7'>
84+
Issue 7. <a href='#issue-7'>#</a>
85+
Summary: Sizing of grid containers underspecified?
86+
From: Simon Sapin
87+
Comment: <a href='https://lists.w3.org/Archives/Public/www-style/2014Apr/0386.html'>https://lists.w3.org/Archives/Public/www-style/2014Apr/0386.html</a>
88+
Open
89+
</pre>
90+
<script>
91+
(function () {
92+
var sheet = document.styleSheets[0];
93+
function addCheckbox(className) {
94+
var element = document.querySelector('*.' + className);
95+
var span = document.createElement('span');
96+
span.innerHTML = element.innerHTML;
97+
element.innerHTML = null;
98+
var check = document.createElement('input');
99+
check.type = 'checkbox';
100+
if (className == 'open') {
101+
check.checked = false;
102+
sheet.insertRule('pre:not(.open)' + '{}', sheet.cssRules.length);
103+
check.onchange = function (e) {
104+
rule.style.display = this.checked ? 'none' : 'block';
105+
}
106+
}
107+
else {
108+
check.checked = true;
109+
sheet.insertRule('pre.' + className + '{}', sheet.cssRules.length);
110+
check.onchange = function (e) {
111+
rule.style.display = this.checked ? 'block' : 'none';
112+
}
113+
}
114+
var rule = sheet.cssRules[sheet.cssRules.length - 1];
115+
element.appendChild(check);
116+
element.appendChild(span);
117+
}
118+
['a', 'd', 'fo', 'oi', 'r', 'open'].forEach(addCheckbox);
119+
}());
120+
</script>

css-grid/issues-wd-20150806.txt

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
Draft: http://www.w3.org/TR/2015/WD-css-grid-1-20150806/
2+
Title: CSS Grid Layout Level 1
3+
4+
----
5+
Issue 1.
6+
Summary: Allow for centered grids of unknown number of columns
7+
From: François Remy
8+
Comment: https://lists.w3.org/Archives/Public/www-style/2015Feb/0293.html
9+
Comment: https://lists.w3.org/Archives/Public/www-style/2015Feb/0313.html
10+
Response: https://lists.w3.org/Archives/Public/www-style/2015May/0113.html
11+
Open
12+
Note: Originally Issue 12 in issues-wd-20150108
13+
----
14+
Issue 2.
15+
Summary: % margins should match block layout
16+
From: Ojan Vafai
17+
Comment: https://lists.w3.org/Archives/Public/www-style/2015Mar/0273.html
18+
Response: https://lists.w3.org/Archives/Public/www-style/2015May/0314.html
19+
Open
20+
Note: Originally Issue 15 in issues-wd-20150108
21+
----
22+
Issue 3.
23+
Summary: Should the width of a column be included in the track size?
24+
From: fantasai
25+
Comment: https://lists.w3.org/Archives/Public/www-style/2015Aug/0064.html
26+
Open
27+
----
28+
Issue 4.
29+
Summary: Require author tools to reorder source to match grid unless requested
30+
From: fantasai
31+
Comment: https://lists.w3.org/Archives/Public/www-style/2015Jun/0180.html
32+
Open
33+
----
34+
Issue 5.
35+
Summary: Cross-reference track gaps from grid-template-rows/cols
36+
From: Emil Björklund
37+
Comment: https://lists.w3.org/Archives/Public/www-style/2015Jul/0396.html
38+
Open
39+
Resolved: Editorial
40+
----
41+
Issue 6.
42+
Summary: Should abspos % margins match grid items or abspos boxes?
43+
From: Mats Palmgren
44+
Comment: https://lists.w3.org/Archives/Public/www-style/2015May/0154.html
45+
Note: See issue 2
46+
Open
47+
----
48+
Issue 7.
49+
Summary: Sizing of grid containers underspecified?
50+
From: Simon Sapin
51+
Comment: https://lists.w3.org/Archives/Public/www-style/2014Apr/0386.html
52+
Open
53+
----

0 commit comments

Comments
 (0)