- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 21 Oct 2008 10:25:04 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv31695 Modified Files: Overview.html Log Message: MessagePorts shouldn't be GCed even when their queue is closed if they have events targetted at them. (credit: ap) (whatwg r2358) Index: Overview.html =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.1530 retrieving revision 1.1531 diff -u -d -r1.1530 -r1.1531 --- Overview.html 20 Oct 2008 19:19:00 -0000 1.1530 +++ Overview.html 21 Oct 2008 10:25:01 -0000 1.1531 @@ -8,7 +8,7 @@ <p><a href=http://www.w3.org/><img alt=W3C height=48 src=http://www.w3.org/Icons/w3c_home width=72></a></p> <h1>HTML 5</h1> <h2 class="no-num no-toc" id=a-vocabulary-and-associated-apis-for-html-and-xhtml>A vocabulary and associated APIs for HTML and XHTML</h2> - <h2 class="no-num no-toc" id=editor-s-draft-date-zzz-9-june-2008><!-- "W3C Working Draft" --> Editor's Draft <!--ZZZ-->20 October 2008</h2> + <h2 class="no-num no-toc" id=editor-s-draft-date-zzz-9-june-2008><!-- "W3C Working Draft" --> Editor's Draft <!--ZZZ-->21 October 2008</h2> <dl><!-- ZZZ: update the month/day <dt>This Version:</dt> <dd><a href="http://www.w3.org/TR/2008/WD-html5-20080610/">http://www.w3.org/TR/2008/WD-html5-20080610/</a></dd> @@ -97,7 +97,7 @@ specification's progress along the W3C Recommendation track. <!--ZZZ:--> - This specification is the 20 October 2008 <!--ZZZ "Working Draft"-->Editor's Draft. + This specification is the 21 October 2008 <!--ZZZ "Working Draft"-->Editor's Draft. <!--:ZZZ--> </p><!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- relationship to other work (required) --><p>This specification is also being produced by the <a href=http://www.whatwg.org/>WHATWG</a>. The two specifications are identical from the table of contents onwards.</p><!-- UNDER NO CIRCUMSTANCES IS THE FOLLOWING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- context and rationale (required) --><p>This specification is intended to replace (be a new version of) @@ -34566,10 +34566,13 @@ other.</p> </div><p>Furthermore, a <code><a href=#messageport>MessagePort</a></code> object must not be - garbage collected while its <a href=#port-message-queue>port message queue</a> is open - and there exists an event either in that queue or in the - <a href=#posted-message-task-source>posted message task source</a> that is to be dispatched on - that <code><a href=#messageport>MessagePort</a></code> object.<h2 id=syntax><span class=secno>8 </span>The HTML syntax</h2><h3 id=writing-html-documents><span class=secno>8.1 </span>Writing HTML documents</h3><p><em>This section only applies to documents, authoring tools, and + garbage collected while there exists a message in a <a href=#task-queue>task + queue</a> that is to be dispatched on that + <code><a href=#messageport>MessagePort</a></code> object, or while the + <code><a href=#messageport>MessagePort</a></code> object's <a href=#port-message-queue>port message queue</a> is + open and there exists a <code title=event-message><a href=#event-message>message</a></code> + event in that queue.</p><!-- we might not need to explicitly say the first part of DOM + Events is fixed to say that events on a task queue prevent GC --><h2 id=syntax><span class=secno>8 </span>The HTML syntax</h2><h3 id=writing-html-documents><span class=secno>8.1 </span>Writing HTML documents</h3><p><em>This section only applies to documents, authoring tools, and markup generators. In particular, it does not apply to conformance checkers; conformance checkers must use the requirements given in the next section ("parsing HTML documents").</em><p>Documents must consist of the following parts, in the given
Received on Tuesday, 21 October 2008 10:25:14 UTC