- From: poot <cvsmail@w3.org>
- Date: Tue, 31 Aug 2010 09:01:21 +0900 (JST)
- To: public-html-diffs@w3.org
hixie: Change document.domain to not rely on XHR. Also handles
document.implementation.createDocument().domain, which was previously
not handled. (whatwg r5404)
http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.4313&r2=1.4314&f=h
http://html5.org/tools/web-apps-tracker?from=5403&to=5404
===================================================================
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:55:38 UTC