- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 24 Mar 2010 09:07:13 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec-author-view
In directory hutz:/tmp/cvs-serv22634
Modified Files:
Overview.html apis-in-html-documents.html semantics.html
spec.html text-level-semantics.html the-map-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-author-view/text-level-semantics.html,v
retrieving revision 1.572
retrieving revision 1.573
diff -u -d -r1.572 -r1.573
--- text-level-semantics.html 4 Mar 2010 20:57:20 -0000 1.572
+++ text-level-semantics.html 24 Mar 2010 09:07:11 -0000 1.573
@@ -315,7 +315,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="urls.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-map-element.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/the-map-element.html,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- the-map-element.html 4 Mar 2010 20:57:20 -0000 1.18
+++ the-map-element.html 24 Mar 2010 09:07:11 -0000 1.19
@@ -363,7 +363,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="urls.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: Overview.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/Overview.html,v
retrieving revision 1.786
retrieving revision 1.787
diff -u -d -r1.786 -r1.787
--- Overview.html 24 Mar 2010 08:57:19 -0000 1.786
+++ Overview.html 24 Mar 2010 09:07:10 -0000 1.787
@@ -306,7 +306,7 @@
</dl><p>This specification is available in the following formats:
<a href="spec.html">single page HTML</a>,
<a href="Overview.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
Index: apis-in-html-documents.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/apis-in-html-documents.html,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -d -r1.22 -r1.23
--- apis-in-html-documents.html 4 Mar 2010 07:16:12 -0000 1.22
+++ apis-in-html-documents.html 24 Mar 2010 09:07:10 -0000 1.23
@@ -439,7 +439,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="urls.html#invalid_access_err">INVALID_ACCESS_ERR</a></code> exception
+ <p>This method throws an <code><a href="urls.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="scripting-1.html#script">script</a></code> element
@@ -459,7 +459,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="urls.html#invalid_access_err">INVALID_ACCESS_ERR</a></code> exception
+ <p>This method throws an <code><a href="urls.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-author-view/semantics.html,v
retrieving revision 1.579
retrieving revision 1.580
diff -u -d -r1.579 -r1.580
--- semantics.html 23 Mar 2010 08:57:00 -0000 1.579
+++ semantics.html 24 Mar 2010 09:07:10 -0000 1.580
@@ -512,7 +512,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="urls.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-author-view/spec.html,v
retrieving revision 1.792
retrieving revision 1.793
diff -u -d -r1.792 -r1.793
--- spec.html 24 Mar 2010 08:57:19 -0000 1.792
+++ spec.html 24 Mar 2010 09:07:10 -0000 1.793
@@ -304,7 +304,7 @@
</dl><p>This specification is available in the following formats:
<a href=spec.html>single page HTML</a>,
<a href=Overview.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
@@ -3977,7 +3977,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=#invalid_access_err>INVALID_ACCESS_ERR</a></code> exception
+ <p>This method throws an <code><a href=#invalid_state_err>INVALID_STATE_ERR</a></code> exception
when invoked on <a href=#xml-documents>XML documents</a>.</p>
<p>Unless called from the body of a <code><a href=#script>script</a></code> element
@@ -3997,7 +3997,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=#invalid_access_err>INVALID_ACCESS_ERR</a></code> exception
+ <p>This method throws an <code><a href=#invalid_state_err>INVALID_STATE_ERR</a></code> exception
when invoked on <a href=#xml-documents>XML documents</a>.</p>
</dd>
@@ -4302,7 +4302,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=#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>;
@@ -7330,7 +7330,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=#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>;
@@ -11663,7 +11663,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=#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>;
Received on Wednesday, 24 March 2010 09:07:15 UTC