|
| 1 | +<!DOCTYPE html> |
| 2 | +<meta charset="utf-8"> |
| 3 | +<title>CSS Foo Level 3 Disposition of Comments for 2013-01-03 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 Foo Level 3 Disposition of Comments for 2013-01-03 WD</h1> |
| 14 | + |
| 15 | +<p>Last call document: <a href="http://www.w3.org/TR/2013/WD-css-foo-3-20130103/">http://www.w3.org/TR/2013/WD-css-foo-3-20130103/</a> |
| 16 | + |
| 17 | +<p>Editor's draft: <a href="http://dev.w3.org/csswg/css-foo-3/">http://dev.w3.org/csswg/css-foo-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: Clarifications about 'content' keyword |
| 37 | +From: Arthur Stolyar |
| 38 | +Comment: https://lists.w3.org/Archives/Public/www-style/2014Aug/0243.html |
| 39 | +Response: https://lists.w3.org/Archives/Public/www-style/2014Aug/0253.html |
| 40 | +Closed: Accepted |
| 41 | +Verified: https://lists.w3.org/Archives/Public/www-style/2014Aug/0255.html |
| 42 | +Resolved: Editorial</pre> |
| 43 | +<pre class='a' id='issue-2'> |
| 44 | +Issue 2. <a href='#issue-2'>#</a> |
| 45 | +Summary: "will-change: <shorthand>" not specified |
| 46 | +From: David Baron |
| 47 | +Comment: https://lists.w3.org/Archives/Public/www-style/2014Jun/0156.html |
| 48 | +Response: https://lists.w3.org/Archives/Public/www-style/2014Jun/0178.html |
| 49 | +Closed: Accepted |
| 50 | +Resolved: Bugfix</pre> |
| 51 | +<script> |
| 52 | +(function () { |
| 53 | + var sheet = document.styleSheets[0]; |
| 54 | + function addCheckbox(className) { |
| 55 | + var element = document.querySelector('*.' + className); |
| 56 | + var label = document.createElement('label'); |
| 57 | + label.innerHTML = element.innerHTML; |
| 58 | + element.innerHTML = null; |
| 59 | + var check = document.createElement('input'); |
| 60 | + check.type = 'checkbox'; |
| 61 | + if (className == 'open') { |
| 62 | + check.checked = false; |
| 63 | + sheet.insertRule('pre:not(.open)' + '{}', sheet.cssRules.length); |
| 64 | + check.onchange = function (e) { |
| 65 | + rule.style.display = this.checked ? 'none' : 'block'; |
| 66 | + } |
| 67 | + } |
| 68 | + else { |
| 69 | + check.checked = true; |
| 70 | + sheet.insertRule('pre.' + className + '{}', sheet.cssRules.length); |
| 71 | + check.onchange = function (e) { |
| 72 | + rule.style.display = this.checked ? 'block' : 'none'; |
| 73 | + } |
| 74 | + } |
| 75 | + var rule = sheet.cssRules[sheet.cssRules.length - 1]; |
| 76 | + element.appendChild(label); |
| 77 | + label.insertBefore(check, label.firstChild); |
| 78 | + } |
| 79 | + ['a', 'd', 'fo', 'oi', 'r', 'open'].forEach(addCheckbox); |
| 80 | +}()); |
| 81 | +</script> |
0 commit comments