- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Sat, 29 Aug 2009 19:22:33 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv30270 Modified Files: Overview.html Log Message: Block window.frames access cross-process, since that would have to be synchronous. (whatwg r3694) Index: Overview.html =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.2872 retrieving revision 1.2873 diff -u -d -r1.2872 -r1.2873 --- Overview.html 29 Aug 2009 00:51:58 -0000 1.2872 +++ Overview.html 29 Aug 2009 19:22:29 -0000 1.2873 @@ -17589,7 +17589,7 @@ <a href="#reflect">reflect</a> the respective content attributes of the same name.</p> - </div><h4 id="video"><span class="secno">4.8.7 </span>The <dfn><code>video</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments. </i><span><a href="http://www.w3.org/html/wg/tracker/issues/9">ISSUE-9</a> (video-synchronization), <a href="http://www.w3.org/html/wg/tracker/issues/10">ISSUE-10</a> (video-smil) and <a href="http://www.w3.org/html/wg/tracker/issues/7">ISSUE-7</a> (video-codecs) block progress to Last Call</span><dl class="element"><dt>Categories</dt> + </div><h4 id="video"><span class="secno">4.8.7 </span>The <dfn><code>video</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments. </i><span><a href="http://www.w3.org/html/wg/tracker/issues/7">ISSUE-7</a> (video-codecs), <a href="http://www.w3.org/html/wg/tracker/issues/9">ISSUE-9</a> (video-synchronization) and <a href="http://www.w3.org/html/wg/tracker/issues/10">ISSUE-10</a> (video-smil) block progress to Last Call</span><dl class="element"><dt>Categories</dt> <dd><a href="#flow-content">Flow content</a>.</dd> <dd><a href="#phrasing-content">Phrasing content</a>.</dd> <dd><a href="#embedded-content">Embedded content</a>.</dd> @@ -42277,14 +42277,19 @@ <p>The <dfn id="dom-length" title="dom-length"><code>length</code></dfn> DOM attribute on the <code><a href="#window">Window</a></code> interface must return the number of <a href="#child-browsing-context" title="child browsing context">child browsing - contexts</a> of the <code>Document</code>.</p> + contexts</a> of the <a href="#active-document">active document</a> of that + <code><a href="#window">Window</a></code> object, if that <code><a href="#window">Window</a></code>'s + <a href="#browsing-context">browsing context</a> shares the same <a href="#event-loop">event + loop</a> as the <a href="#script-s-browsing-context">script's browsing context</a> of the + <a href="#first-script">first script</a> accessing the DOM attribute; otherwise, it + must return zero.</p> + + <!-- in other words, frames are only accessible to same-thread processes --> <p>The <span>indices of the supported indexed properties</span> on the <code><a href="#window">Window</a></code> object at any instant are the numbers in the - range 0 .. <span title=""><var title="">n</var>-1</span>, where <var title="">n</var> is the number of <a href="#child-browsing-context" title="child browsing - context">child browsing contexts</a> of the - <code>Document</code>. If <var title="">n</var> is zero then there - are no <span>supported indexed properties</span>.</p> + range 0 .. <span title=""><var title="">n</var>-1</span>, where <var title="">n</var> is the number returned by the <code title="dom-length"><a href="#dom-length">length</a></code> DOM attribute. If <var title="">n</var> is zero then there are no <span>supported indexed + properties</span>.</p> <p>When a <code><a href="#window">Window</a></code> object is <dfn id="dom-window-item" title="dom-window-item">indexed to retrieve an indexed property</dfn> <var title="">index</var>, the value returned must be @@ -48382,7 +48387,7 @@ <a href="#source-browsing-context">source browsing context</a>.</p> - <h5 id="hyperlink-auditing"><span class="secno">6.12.2.1 </span><dfn>Hyperlink auditing</dfn></h5><p class="XXX annotation"><b>Status: </b><i>Controversial Working Draft. </i><span><a href="http://www.w3.org/html/wg/tracker/issues/1">ISSUE-1</a> (PINGPOST), <a href="http://www.w3.org/html/wg/tracker/issues/63">ISSUE-63</a> (origin-req-scope) and <a href="http://www.w3.org/html/wg/tracker/issues/2">ISSUE-2</a> (PINGUI) block progress to Last Call</span></p> + <h5 id="hyperlink-auditing"><span class="secno">6.12.2.1 </span><dfn>Hyperlink auditing</dfn></h5><p class="XXX annotation"><b>Status: </b><i>Controversial Working Draft. </i><span><a href="http://www.w3.org/html/wg/tracker/issues/63">ISSUE-63</a> (origin-req-scope), <a href="http://www.w3.org/html/wg/tracker/issues/1">ISSUE-1</a> (PINGPOST) and <a href="http://www.w3.org/html/wg/tracker/issues/2">ISSUE-2</a> (PINGUI) block progress to Last Call</span></p> <p>If an <code><a href="#the-a-element">a</a></code> or <code><a href="#the-area-element">area</a></code> hyperlink element has a <code title="attr-hyperlink-ping"><a href="#ping">ping</a></code> attribute, and the
Received on Saturday, 29 August 2009 19:22:43 UTC