- From: Sam Ruby via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 24 Aug 2010 18:33:45 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/status
In directory hutz:/tmp/cvs-serv2653
Added Files:
formal-objection-status.html
Log Message:
Formal Objection status
--- NEW FILE: formal-objection-status.html ---
<!DOCTYPE html>
<title>Formal Objection Status</title>
<meta charset=utf-8>
<style>
table {width: 98%; margin-left: 1%; padding: 0; border-spacing: 0;}
tr, th, td { border: 1px solid black; border-style: outset;}
th, td { padding: 0.3em; vertical-align: top; }
h2 { text-align: center; }
th { cursor: pointer; padding-left: 1.5em; padding-right: 1.5em; }
th[aria-sort] { background: yellow; color: black; }
th[aria-sort]:after { float: right; width: 1.5em; margin-right: -1.5em; }
th[aria-sort=ascending]:after { content: '\2B07'; }
th[aria-sort=descending]:after { content: '\2B06'; }
td[id] { white-space: pre; }
th, tr:nth-child(3n) {background: #dee}
a:visited, a:link, h2 {text-decoration: none; color: #0B5B9D}
a:hover {background-color: #0B4B9D; border: 1px dotted #000; color: white;
margin: 0; padding: 1px 2px}
table th:first-child {
border-radius: 1em 0 0 0;
-webkit-border-top-left-radius: 1em;
-moz-border-radius: 1em 0 0 0;
}
table th:last-child {
border-radius: 0 1em 0 0;
-webkit-border-top-right-radius: 1em;
-moz-border-radius: 0 1em 0 0;
}
table tr:last-child > td:first-child {
border-radius: 0 0 0 1em;
-webkit-border-bottom-left-radius: 1em;
-moz-border-radius: 0 0 0 1em;
}
table tr:last-child > td:last-child {
border-radius: 0 0 1em 0;
-webkit-border-bottom-right-radius: 1em;
-moz-border-radius: 0 0 1em 0;
}
</style>
<h2>Formal Objection Status</h2>
<table>
<thead>
<tr><th>Issue</th><th>Bug(s)</th><th>Decision</th><th>Formal Objection(s)</th></tr>
<tbody>
<tr><td id="ISSUE-030"><a href="http://www.w3.org/html/wg/tracker/issues/30">ISSUE-30</a>
longdesc <a href="#ISSUE-030" title="Link to this entry">#</a></td>
<td>none</td>
<td>
<strong><a href="http://lists.w3.org/Archives/Public/public-html/2010Aug/att-0112/issue-30-decision.html">not include the longdesc attribute in the language</a></strong>
</td>
<td>
<strong><a href="http://lists.w3.org/Archives/Public/public-html/2010Aug/0160.html">Leif's Formal Objection</a></strong>
</td>
</tr>
</table>
<script>
var ths = document.getElementsByTagName('TH');
var last = null;
for (var i = 0; i < ths.length; i += 1) {
ths[i].onclick = function (event) {
var trs = event.target.parentNode.parentNode.parentNode.tBodies[0].getElementsByTagName('TR');
var cells = [];
for (var j = trs.length-1; j >= 0; j -= 1) {
cells.push(trs[j].cells[event.target.cellIndex]);
trs[j].parentNode.removeChild(trs[j]);
}
cells.sort(function cmp(a, b) {
if (a.hasChildNodes() && (a.firstChild.nodeName == 'TIME'))
a_t1 = a.firstChild.getAttribute('datetime');
else if (a.hasAttribute('id'))
a_t1 = a.getAttribute('id');
else
a_t1 = a.textContent;
a_t2 = a.parentNode.cells[0].getAttribute('id');
if (b.hasChildNodes() && (b.firstChild.nodeName == 'TIME'))
b_t1 = b.firstChild.getAttribute('datetime');
else if (b.hasAttribute('id'))
b_t1 = b.getAttribute('id');
else
b_t1 = b.textContent;
b_t2 = b.parentNode.cells[0].getAttribute('id');
var result = a_t1 > b_t1 ? 1 : a_t1 < b_t1 ? -1 : a_t2 > b_t2 ? 1 : a_t2 < b_t2 ? -1 : 0;
if (event.target.getAttribute('aria-sort') == 'ascending')
return 1-result;
return result;
});
for (var j = 0; j < cells.length; j += 1) {
event.target.parentNode.parentNode.parentNode.tBodies[0].appendChild(cells[j].parentNode);
}
if (event.target.getAttribute('aria-sort') == 'ascending') {
event.target.setAttribute('aria-sort', 'descending');
} else {
if (last)
last.removeAttribute('aria-sort');
event.target.setAttribute('aria-sort', 'ascending');
}
last = event.target;
};
}
</script>
<h4>See also:</h4>
<ul>
<li><a href="http://www.w3.org/2005/10/Process-20051014/policies#WGArchiveMinorityViews">W3C Process Document</a></li>
<li><a href="http://dev.w3.org/html5/decision-policy/decision-policy.html">HTML Working Group Decision Policy</a></li>
<li><a href="http://dev.w3.org/cvsweb/html5/status/formal-objection-status.html">Revision history</a> for this page.</li>
</ul>
Received on Tuesday, 24 August 2010 18:33:46 UTC