- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 24 Mar 2010 09:06:42 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv22540 Modified Files: embedded-content-0.html semantics.html spec.html text-level-semantics.html the-canvas-element.html Log Message: Make document.write() fire INVALID_STATE_ERR for consistency with similar APIs, rather than INVALID_ACCESS_ERR. Also, fix some xrefs in IDL blocks. (whatwg r4863) [updated by splitter] Index: text-level-semantics.html =================================================================== RCS file: /sources/public/html5/spec/text-level-semantics.html,v retrieving revision 1.873 retrieving revision 1.874 diff -u -d -r1.873 -r1.874 --- text-level-semantics.html 24 Mar 2010 08:56:42 -0000 1.873 +++ text-level-semantics.html 24 Mar 2010 09:06:40 -0000 1.874 @@ -316,7 +316,7 @@ stringifier attribute DOMString <a href="#dom-a-href" title="dom-a-href">href</a>; attribute DOMString <a href="#dom-a-target" title="dom-a-target">target</a>; attribute DOMString <a href="#dom-a-rel" title="dom-a-rel">rel</a>; - readonly attribute DOMTokenList <a href="#dom-a-rellist" title="dom-a-relList">relList</a>; + readonly attribute <a href="infrastructure.html#domtokenlist">DOMTokenList</a> <a href="#dom-a-rellist" title="dom-a-relList">relList</a>; attribute DOMString <a href="#dom-a-media" title="dom-a-media">media</a>; attribute DOMString <a href="#dom-a-hreflang" title="dom-a-hreflang">hreflang</a>; attribute DOMString <a href="#dom-a-type" title="dom-a-type">type</a>; Index: the-canvas-element.html =================================================================== RCS file: /sources/public/html5/spec/the-canvas-element.html,v retrieving revision 1.740 retrieving revision 1.741 diff -u -d -r1.740 -r1.741 --- the-canvas-element.html 17 Mar 2010 23:56:33 -0000 1.740 +++ the-canvas-element.html 24 Mar 2010 09:06:40 -0000 1.741 @@ -688,7 +688,7 @@ stringifier attribute DOMString <a href="#dom-area-href" title="dom-area-href">href</a>; attribute DOMString <a href="#dom-area-target" title="dom-area-target">target</a>; attribute DOMString <a href="#dom-area-rel" title="dom-area-rel">rel</a>; - readonly attribute DOMTokenList <a href="#dom-area-rellist" title="dom-area-relList">relList</a>; + readonly attribute <a href="infrastructure.html#domtokenlist">DOMTokenList</a> <a href="#dom-area-rellist" title="dom-area-relList">relList</a>; attribute DOMString <a href="#dom-area-media" title="dom-area-media">media</a>; attribute DOMString <a href="#dom-area-hreflang" title="dom-area-hreflang">hreflang</a>; attribute DOMString <a href="#dom-area-type" title="dom-area-type">type</a>; Index: embedded-content-0.html =================================================================== RCS file: /sources/public/html5/spec/embedded-content-0.html,v retrieving revision 1.866 retrieving revision 1.867 diff -u -d -r1.866 -r1.867 --- embedded-content-0.html 4 Mar 2010 15:15:47 -0000 1.866 +++ embedded-content-0.html 24 Mar 2010 09:06:40 -0000 1.867 @@ -1314,7 +1314,7 @@ stream. If necessary, calls the <code title="dom-document-open"><a href="#dom-document-open">open()</a></code> method implicitly first.</p> - <p>This method throws an <code><a href="infrastructure.html#invalid_access_err">INVALID_ACCESS_ERR</a></code> exception + <p>This method throws an <code><a href="infrastructure.html#invalid_state_err">INVALID_STATE_ERR</a></code> exception when invoked on <a href="dom.html#xml-documents">XML documents</a>.</p> <p>Unless called from the body of a <code><a href="semantics.html#script">script</a></code> element @@ -1333,7 +1333,7 @@ <ol><li> <p>If the method was invoked on an <a href="dom.html#xml-documents" title="XML documents">XML - document</a>, throw an <code><a href="infrastructure.html#invalid_access_err">INVALID_ACCESS_ERR</a></code> + document</a>, throw an <code><a href="infrastructure.html#invalid_state_err">INVALID_STATE_ERR</a></code> exception and abort these steps.</p> <!-- @@ -1402,7 +1402,7 @@ <code title="dom-document-open"><a href="#dom-document-open">open()</a></code> method implicitly first.</p> - <p>This method throws an <code><a href="infrastructure.html#invalid_access_err">INVALID_ACCESS_ERR</a></code> exception + <p>This method throws an <code><a href="infrastructure.html#invalid_state_err">INVALID_STATE_ERR</a></code> exception when invoked on <a href="dom.html#xml-documents">XML documents</a>.</p> </dd> Index: semantics.html =================================================================== RCS file: /sources/public/html5/spec/semantics.html,v retrieving revision 1.887 retrieving revision 1.888 diff -u -d -r1.887 -r1.888 --- semantics.html 23 Mar 2010 08:56:29 -0000 1.887 +++ semantics.html 24 Mar 2010 09:06:40 -0000 1.888 @@ -537,7 +537,7 @@ attribute boolean <a href="#dom-link-disabled" title="dom-link-disabled">disabled</a>; attribute DOMString <a href="#dom-link-href" title="dom-link-href">href</a>; attribute DOMString <a href="#dom-link-rel" title="dom-link-rel">rel</a>; - readonly attribute DOMTokenList <a href="#dom-link-rellist" title="dom-link-relList">relList</a>; + readonly attribute <a href="infrastructure.html#domtokenlist">DOMTokenList</a> <a href="#dom-link-rellist" title="dom-link-relList">relList</a>; attribute DOMString <a href="#dom-link-media" title="dom-link-media">media</a>; attribute DOMString <a href="#dom-link-hreflang" title="dom-link-hreflang">hreflang</a>; attribute DOMString <a href="#dom-link-type" title="dom-link-type">type</a>; Index: spec.html =================================================================== RCS file: /sources/public/html5/spec/spec.html,v retrieving revision 1.897 retrieving revision 1.898 diff -u -d -r1.897 -r1.898 --- spec.html 24 Mar 2010 08:56:42 -0000 1.897 +++ spec.html 24 Mar 2010 09:06:40 -0000 1.898 @@ -307,7 +307,7 @@ </dl><p>This specification is available in the following formats: <a href="Overview.html">single page HTML</a>, <a href="spec.html">multipage HTML</a>. -This is revision 1.3895. +This is revision 1.3896. </p> <p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 2010 <a href="http://www.w3.org/"><abbr title="World Wide
Received on Wednesday, 24 March 2010 09:06:44 UTC