Skip to content

Commit 4360adf

Browse files
committed
[css-flexbox] Update DoC
1 parent f723162 commit 4360adf

2 files changed

Lines changed: 12 additions & 14 deletions

File tree

css-flexbox/issues-lc-20140325.html

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -159,14 +159,13 @@ <h1>CSS Flexible Box Layout Module Level 1 Disposition of Comments for 2014-03-2
159159
Response: <a href='http://lists.w3.org/Archives/Public/www-style/2014May/0197.html'>http://lists.w3.org/Archives/Public/www-style/2014May/0197.html</a>
160160
Closed: Accepted
161161
Resolved: Editors' discretion</pre>
162-
<pre class=' open' id='issue-16'>
162+
<pre class='a' id='issue-16'>
163163
Issue 16. <a href='#issue-16'>#</a>
164164
Summary: Min-height tweak to skip intrinsic aspect ratio items
165165
From: Greg Whitworth
166166
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2014May/0177.html'>http://lists.w3.org/Archives/Public/www-style/2014May/0177.html</a>
167167
Response: <a href='http://lists.w3.org/Archives/Public/www-style/2014Jul/0011.html'>http://lists.w3.org/Archives/Public/www-style/2014Jul/0011.html</a>
168-
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2014Jul/0053.html'>http://lists.w3.org/Archives/Public/www-style/2014Jul/0053.html</a>
169-
Open</pre>
168+
Closed: Accepted</pre>
170169
<pre class='a' id='issue-17'>
171170
Issue 17. <a href='#issue-17'>#</a>
172171
Summary: Typo
@@ -206,7 +205,7 @@ <h1>CSS Flexible Box Layout Module Level 1 Disposition of Comments for 2014-03-2
206205
Issue 21. <a href='#issue-21'>#</a>
207206
Summary: Cross-size of stretched flex size should be definite if flexbox is def
208207
From: Rossen Atanassov
209-
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2014Jul/0012.html'>http://lists.w3.org/Archives/Public/www-style/2014Jul/0012.html</a>
208+
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2014May/0040.html'>http://lists.w3.org/Archives/Public/www-style/2014May/0040.html</a>
210209
Response: <a href='http://lists.w3.org/Archives/Public/www-style/2014Jul/0012.html'>http://lists.w3.org/Archives/Public/www-style/2014Jul/0012.html</a>
211210
Closed: Accepted
212211
Open: NEEDS REVIEW</pre>
@@ -239,13 +238,13 @@ <h1>CSS Flexible Box Layout Module Level 1 Disposition of Comments for 2014-03-2
239238
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2014Jun/0099.html'>http://lists.w3.org/Archives/Public/www-style/2014Jun/0099.html</a>
240239
Response: <a href='http://lists.w3.org/Archives/Public/www-style/2014Jun/0100.html'>http://lists.w3.org/Archives/Public/www-style/2014Jun/0100.html</a>
241240
Closed: Deferred</pre>
242-
<pre class=' open' id='issue-26'>
241+
<pre class='a' id='issue-26'>
243242
Issue 26. <a href='#issue-26'>#</a>
244243
Summary: Better handling of main-axis percentages
245244
From: John Rimmer
246245
Comment: <a href='http://lists.w3.org/Archives/Public/www-style/2014Jun/0290.html'>http://lists.w3.org/Archives/Public/www-style/2014Jun/0290.html</a>
247246
Response: <a href='http://lists.w3.org/Archives/Public/www-style/2014Jul/0010.html'>http://lists.w3.org/Archives/Public/www-style/2014Jul/0010.html</a>
248-
Open: Pending Edits / Verification</pre>
247+
Closed: Accepted</pre>
249248
<pre class=' open' id='issue-27'>
250249
Issue 27. <a href='#issue-27'>#</a>
251250
Summary: Intrinsic sizes vs. percentage children
@@ -347,8 +346,8 @@ <h1>CSS Flexible Box Layout Module Level 1 Disposition of Comments for 2014-03-2
347346
var sheet = document.styleSheets[0];
348347
function addCheckbox(className) {
349348
var element = document.querySelector('*.' + className);
350-
var span = document.createElement('span');
351-
span.innerHTML = element.innerHTML;
349+
var label = document.createElement('label');
350+
label.innerHTML = element.innerHTML;
352351
element.innerHTML = null;
353352
var check = document.createElement('input');
354353
check.type = 'checkbox';
@@ -367,8 +366,8 @@ <h1>CSS Flexible Box Layout Module Level 1 Disposition of Comments for 2014-03-2
367366
}
368367
}
369368
var rule = sheet.cssRules[sheet.cssRules.length - 1];
370-
element.appendChild(check);
371-
element.appendChild(span);
369+
element.appendChild(label);
370+
label.insertBefore(check, label.firstChild);
372371
}
373372
['a', 'd', 'fo', 'oi', 'r', 'open'].forEach(addCheckbox);
374373
}());

css-flexbox/issues-lc-20140325.txt

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -136,8 +136,7 @@ Summary: Min-height tweak to skip intrinsic aspect ratio items
136136
From: Greg Whitworth
137137
Comment: http://lists.w3.org/Archives/Public/www-style/2014May/0177.html
138138
Response: http://lists.w3.org/Archives/Public/www-style/2014Jul/0011.html
139-
Comment: http://lists.w3.org/Archives/Public/www-style/2014Jul/0053.html
140-
Open
139+
Closed: Accepted
141140
----
142141
Issue 17.
143142
Summary: Typo
@@ -177,7 +176,7 @@ Note: Open to better suggestion on the currently-named 'main-size' keyword
177176
Issue 21.
178177
Summary: Cross-size of stretched flex size should be definite if flexbox is def
179178
From: Rossen Atanassov
180-
Comment: http://lists.w3.org/Archives/Public/www-style/2014Jul/0012.html
179+
Comment: http://lists.w3.org/Archives/Public/www-style/2014May/0040.html
181180
Response: http://lists.w3.org/Archives/Public/www-style/2014Jul/0012.html
182181
Closed: Accepted
183182
Open: NEEDS REVIEW
@@ -216,7 +215,7 @@ Summary: Better handling of main-axis percentages
216215
From: John Rimmer
217216
Comment: http://lists.w3.org/Archives/Public/www-style/2014Jun/0290.html
218217
Response: http://lists.w3.org/Archives/Public/www-style/2014Jul/0010.html
219-
Open: Pending Edits / Verification
218+
Closed: Accepted
220219
----
221220
Issue 27.
222221
Summary: Intrinsic sizes vs. percentage children

0 commit comments

Comments
 (0)