html5/spec Overview.html,1.3287,1.3288

Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv24283

Modified Files:
	Overview.html 
Log Message:
Make the microdata DOM API more consistent with other APIs. (camelCase) (whatwg r4139)

Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.3287
retrieving revision 1.3288
diff -u -d -r1.3287 -r1.3288
--- Overview.html	14 Oct 2009 09:56:38 -0000	1.3287
+++ Overview.html	14 Oct 2009 10:53:40 -0000	1.3288
@@ -6825,10 +6825,10 @@
   readonly attribute <a href="#domstringmap">DOMStringMap</a> <a href="#dom-dataset" title="dom-dataset">dataset</a>;
 
   // <a href="#microdata">microdata</a>
-           attribute boolean <a href="#dom-itemscope" title="dom-itemscope">itemscope</a>;
-           attribute DOMString <a href="#dom-itemtype" title="dom-itemtype">itemtype</a>;
-           attribute DOMString <a href="#dom-itemid" title="dom-itemid">itemid</a>;
-  [PutForwards=<a href="#dom-domsettabletokenlist-value" title="dom-DOMSettableTokenList-value">value</a>] readonly attribute <a href="#domsettabletokenlist">DOMSettableTokenList</a> <a href="#dom-itemprop" title="dom-itemprop">itemprop</a>;
+           attribute boolean <a href="#dom-itemscope" title="dom-itemScope">itemScope</a>;
+           attribute DOMString <a href="#dom-itemtype" title="dom-itemType">itemType</a>;
+           attribute DOMString <a href="#dom-itemid" title="dom-itemId">itemId</a>;
+  [PutForwards=<a href="#dom-domsettabletokenlist-value" title="dom-DOMSettableTokenList-value">value</a>] readonly attribute <a href="#domsettabletokenlist">DOMSettableTokenList</a> <a href="#dom-itemprop" title="dom-itemProp">itemProp</a>;
   readonly attribute <a href="#htmlpropertycollection">HTMLPropertyCollection</a> <a href="#dom-properties" title="dom-properties">properties</a>;
            attribute DOMString <a href="#dom-content" title="dom-content">content</a>;
 
@@ -39573,9 +39573,9 @@
   <code>NodeList</code> containing the items with the specified types,
   or all types if no argument is specified.<p>Each <a href="#concept-item" title="concept-item">item</a> is represented in the
   DOM by the element on which the relevant <code title="attr-itemscope"><a href="#attr-itemscope">itemscope</a></code> attribute is found. These
-  elements have their <code title="dom-itemscope"><a href="#dom-itemscope">element.itemscope</a></code> IDL attribute set to
+  elements have their <code title="dom-itemScope"><a href="#dom-itemscope">element.itemScope</a></code> IDL attribute set to
   true.<p>The type of <a href="#concept-item" title="concept-item">items</a> can be
-  obtained using the <code title="dom-itemtype"><a href="#dom-itemtype">element.itemtype</a></code> IDL attribute on the
+  obtained using the <code title="dom-itemType"><a href="#dom-itemtype">element.itemType</a></code> IDL attribute on the
   element with the <code title="attr-itemscope"><a href="#attr-itemscope">itemscope</a></code>
   attribute.<div class="example">
 
@@ -39977,7 +39977,7 @@
   containing all the <a href="#top-level-microdata-items">top-level microdata items</a> in the
   document.</p>
 
-  <p>The <dfn id="dom-itemscope" title="dom-itemscope"><code>itemscope</code></dfn>, <dfn id="dom-itemtype" title="dom-itemtype"><code>itemtype</code></dfn>, <dfn id="dom-itemid" title="dom-itemid"><code>itemid</code></dfn>, and <dfn id="dom-itemprop" title="dom-itemprop"><code>itemprop</code></dfn> IDL attributes on
+  <p>The <dfn id="dom-itemscope" title="dom-itemScope"><code>itemScope</code></dfn>, <dfn id="dom-itemtype" title="dom-itemType"><code>itemType</code></dfn>, <dfn id="dom-itemid" title="dom-itemId"><code>itemId</code></dfn>, and <dfn id="dom-itemprop" title="dom-itemProp"><code>itemProp</code></dfn> IDL attributes on
   <a href="#html-elements">HTML elements</a> must <a href="#reflect">reflect</a> the respective
   content attributes of the same name.</p>
 

Received on Wednesday, 14 October 2009 10:53:47 UTC