|
| 1 | +<!DOCTYPE html> |
| 2 | +<meta charset="utf-8"> |
| 3 | +<title>CSS Basic User Interface Module Level 3 (CSS3 UI) Disposition of Comments for 2017-12-14 PR</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 Basic User Interface Module Level 3 (CSS3 UI) Disposition of Comments for 2017-12-14 PR</h1> |
| 14 | + |
| 15 | +<p>Review document: <a href="https://www.w3.org/TR/2017/PR-css-ui-3-20171214/">https://www.w3.org/TR/2017/PR-css-ui-3-20171214/</a> |
| 16 | + |
| 17 | +<p>Editor's draft: <a href="http://dev.w3.org/csswg/css-ui-3/">http://dev.w3.org/csswg/css-ui-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='r' id='issue-1'> |
| 35 | +Issue 1. <a href='#issue-1'>#</a> |
| 36 | +From: Dennis Heuer |
| 37 | +Summary: outline-width and outline-style are poorly designed |
| 38 | +Comment: <a href='https://lists.w3.org/Archives/Public/www-style/2018Jan/0040.html'>https://lists.w3.org/Archives/Public/www-style/2018Jan/0040.html</a> |
| 39 | +Response: <a href='https://lists.w3.org/Archives/Public/www-style/2018Jan/0047.html'>https://lists.w3.org/Archives/Public/www-style/2018Jan/0047.html</a> |
| 40 | +Closed: Rejected |
| 41 | +Resolved: Editors' discretion</pre> |
| 42 | +<script> |
| 43 | +(function () { |
| 44 | + var sheet = document.styleSheets[0]; |
| 45 | + function addCheckbox(className) { |
| 46 | + var element = document.querySelector('*.' + className); |
| 47 | + var label = document.createElement('label'); |
| 48 | + label.innerHTML = element.innerHTML; |
| 49 | + element.innerHTML = null; |
| 50 | + var check = document.createElement('input'); |
| 51 | + check.type = 'checkbox'; |
| 52 | + if (className == 'open') { |
| 53 | + check.checked = false; |
| 54 | + sheet.insertRule('pre:not(.open)' + '{}', sheet.cssRules.length); |
| 55 | + check.onchange = function (e) { |
| 56 | + rule.style.display = this.checked ? 'none' : 'block'; |
| 57 | + } |
| 58 | + } |
| 59 | + else { |
| 60 | + check.checked = true; |
| 61 | + sheet.insertRule('pre.' + className + '{}', sheet.cssRules.length); |
| 62 | + check.onchange = function (e) { |
| 63 | + rule.style.display = this.checked ? 'block' : 'none'; |
| 64 | + } |
| 65 | + } |
| 66 | + var rule = sheet.cssRules[sheet.cssRules.length - 1]; |
| 67 | + element.appendChild(label); |
| 68 | + label.insertBefore(check, label.firstChild); |
| 69 | + } |
| 70 | + ['a', 'd', 'fo', 'oi', 'r', 'open'].forEach(addCheckbox); |
| 71 | +}()); |
| 72 | +</script> |
0 commit comments