CINXE.COM
CSS Basic User Interface Module Level 3 (CSS3 UI) Disposition of Comments for 2017-12-14 PR
<!DOCTYPE html> <meta charset="utf-8"> <title>CSS Basic User Interface Module Level 3 (CSS3 UI) Disposition of Comments for 2017-12-14 PR</title> <style type="text/css"> .a { background: lightgreen } .d { background: lightblue } .r { background: orange } .fo { background: red } .open { border: solid red; padding: 0.2em; } :target { box-shadow: 0.25em 0.25em 0.25em; } </style> <h1>CSS Basic User Interface Module Level 3 (CSS3 UI) Disposition of Comments for 2017-12-14 PR</h1> <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> <p>Editor's draft: <a href="http://dev.w3.org/csswg/css-ui-3/">http://dev.w3.org/csswg/css-ui-3/</a> <p>The following color coding convention is used for comments:</p> <ul> <li class="a">Accepted or Rejected and positive response <li class="r">Rejected and no response <li class="fo">Rejected and negative response <li class="d">Deferred <li class="oi">Out-of-Scope or Invalid and not verified </ul> <p class=open>Open issues are marked like this</p> <p>An issue can be closed as <code>Accepted</code>, <code>OutOfScope</code>, <code>Invalid</code>, <code>Rejected</code>, or <code>Retracted</code>. <code>Verified</code> indicates commentor's acceptance of the response.</p> <pre class='r' id='issue-1'> Issue 1. <a href='#issue-1'>#</a> From: Dennis Heuer Summary: outline-width and outline-style are poorly designed 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> 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> Response: <a href='https://lists.w3.org/Archives/Public/www-style/2018Jan/0050.html'>https://lists.w3.org/Archives/Public/www-style/2018Jan/0050.html</a> Closed: Rejected Resolved: Editors' discretion</pre> <pre class='r' id='issue-2'> Issue 2. <a href='#issue-2'>#</a> From: Dennis Heuer Summary: The syntax of the cursor property should be different Comment: <a href='https://lists.w3.org/Archives/Public/www-style/2018Jan/0045.html'>https://lists.w3.org/Archives/Public/www-style/2018Jan/0045.html</a> Response: <a href='https://lists.w3.org/Archives/Public/www-style/2018Jan/0046.html'>https://lists.w3.org/Archives/Public/www-style/2018Jan/0046.html</a> Response: <a href='https://lists.w3.org/Archives/Public/www-style/2018Jan/0049.html'>https://lists.w3.org/Archives/Public/www-style/2018Jan/0049.html</a> Closed: Rejected Resolved: Editors' discretion</pre> <script> (function () { var sheet = document.styleSheets[0]; function addCheckbox(className) { var element = document.querySelector('*.' + className); var label = document.createElement('label'); label.innerHTML = element.innerHTML; element.innerHTML = null; var check = document.createElement('input'); check.type = 'checkbox'; if (className == 'open') { check.checked = false; sheet.insertRule('pre:not(.open)' + '{}', sheet.cssRules.length); check.onchange = function (e) { rule.style.display = this.checked ? 'none' : 'block'; } } else { check.checked = true; sheet.insertRule('pre.' + className + '{}', sheet.cssRules.length); check.onchange = function (e) { rule.style.display = this.checked ? 'block' : 'none'; } } var rule = sheet.cssRules[sheet.cssRules.length - 1]; element.appendChild(label); label.insertBefore(check, label.firstChild); } ['a', 'd', 'fo', 'oi', 'r', 'open'].forEach(addCheckbox); }()); </script>