- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 13 Dec 2010 08:06:48 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/markup/js In directory hutz:/tmp/cvs-serv25824/js Modified Files: jump-indexes.js Log Message: doc video/@audio + input button requires value att Index: jump-indexes.js =================================================================== RCS file: /sources/public/html5/markup/js/jump-indexes.js,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- jump-indexes.js 12 Aug 2010 19:55:38 -0000 1.12 +++ jump-indexes.js 13 Dec 2010 08:06:46 -0000 1.13 @@ -14,7 +14,7 @@ var itemList = [ ["a", "abbr", "address", "area", "article", "aside", "audio"], - ["b", "base", "bdo", "blockquote", "body", "br", "button"], + ["b", "base", "bdi", "bdo", "blockquote", "body", "br", "button"], ["canvas", "caption", "cite", "code", "col", "colgroup", "command"], ["datalist", "dd", "del", "details", "dfn", "dir", "div", "dl", "dt"], ["em", "embed", "fieldset", "figcaption", "figure", "footer", "form"], @@ -28,7 +28,7 @@ ["table", "tbody", "td", "textarea", "tfoot", "th", "thead", "time", "title", "tr"], ["ul", "var", "video", "wbr"], ["global-attributes","index-of-terms","toc","toggle"] - ] + ]; function showjumpIndexA(event) { var node = event.target; @@ -41,7 +41,7 @@ indexDiv.className = 'jumpIndexA'; for (var i=0, len=itemList.length; i<len; ++i) { var p = document.createElement('p'); - var items = itemList[i]; + items = itemList[i]; for (var j=0, jlen=items.length; j<jlen; ++j) { var a = document.createElement('a'); var separator = document.createTextNode(" ");
Received on Monday, 13 December 2010 08:06:49 UTC