- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 30 Aug 2010 23:54:47 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv9286
Modified Files:
Overview.html
Log Message:
Change document.domain to not rely on XHR. Also handles document.implementation.createDocument().domain, which was previously not handled. (whatwg r5404)
Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.4313
retrieving revision 1.4314
diff -u -d -r1.4313 -r1.4314
--- Overview.html 30 Aug 2010 23:42:08 -0000 1.4313
+++ Overview.html 30 Aug 2010 23:54:43 -0000 1.4314
@@ -42537,18 +42537,18 @@
brackets from the host portion of the <a href="#url-host" title="url-host"><host></a> component must be omitted from
the attribute's value.</p>
- <p>On getting, the attribute must return its current
- value, unless the document was created by
- <code>XMLHttpRequest</code>, in which case it must throw an
- <code><a href="#invalid_access_err">INVALID_ACCESS_ERR</a></code> exception.</p>
+ <p>On getting, the attribute must return its current value, unless
+ the <code><a href="#document">Document</a></code> has no <a href="#browsing-context">browsing context</a>, in
+ which case it must throw an <code><a href="#invalid_access_err">INVALID_ACCESS_ERR</a></code>
+ exception.</p>
<p>On setting, the user agent must run the following algorithm:</p>
<ol><li>
- <p>If the document was created by <code>XMLHttpRequest</code>,
- throw an <code><a href="#invalid_access_err">INVALID_ACCESS_ERR</a></code> exception and abort these
- steps.</p>
+ <p>If the <code><a href="#document">Document</a></code> has no <a href="#browsing-context">browsing
+ context</a>, throw an <code><a href="#invalid_access_err">INVALID_ACCESS_ERR</a></code> exception
+ and abort these steps.</p>
</li>
Received on Monday, 30 August 2010 23:54:49 UTC