- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 11 Oct 2010 22:17:00 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv13995 Modified Files: history.html scripting-1.html spec.html Log Message: Mention Format=Flowed explicitly. (whatwg r5598) [updated by splitter] Index: scripting-1.html =================================================================== RCS file: /sources/public/html5/spec/scripting-1.html,v retrieving revision 1.25 retrieving revision 1.26 diff -u -d -r1.25 -r1.26 --- scripting-1.html 6 Oct 2010 17:46:43 -0000 1.25 +++ scripting-1.html 11 Oct 2010 22:16:58 -0000 1.26 @@ -793,6 +793,26 @@ <code><a href="infrastructure.html#document">Document</a></code> is used by the <code><a href="infrastructure.html#document">Document</a></code>'s parser(s).</p> + <p class="note">If a <code><a href="#script">script</a></code> element that blocks a + parser gets moved to another <code><a href="infrastructure.html#document">Document</a></code> before it would + normally have stopped blocking that parser, it nonetheless continues + blocking that parser until the condition that causes it to be + blocking the parser no longer applies (e.g. if the script is a + <a href="#pending-parsing-blocking-script">pending parsing-blocking script</a> because there was + <a href="semantics.html#a-style-sheet-that-is-blocking-scripts">a style sheet that is blocking scripts</a> when it was + parsed, but then the script is moved to another + <code><a href="infrastructure.html#document">Document</a></code> before the style sheet loads, the script still + blocks the parser until the style sheets are all loaded, at which + time the script executes and the parser is unblocked).</p> + + <!-- also (and this would be worth testing): the way the spec is + written, if you do not have a style sheet that is blocking scripts, + then you parse a <script src>, then while waiting for the script to + load you insert an external style sheet, the script will delay until + the sheet is loaded, because there's just a binary "are style sheets + blocking scripts" state, things aren't defined in terms of which + style sheets are blocking which scripts --> + <p><dfn id="executing-a-script-block" title="executing a script block">Executing a script block</dfn>: When the steps above require that the script block be executed, the user agent must act as follows:</p> Index: history.html =================================================================== RCS file: /sources/public/html5/spec/history.html,v retrieving revision 1.1009 retrieving revision 1.1010 diff -u -d -r1.1009 -r1.1010 --- history.html 29 Sep 2010 19:16:51 -0000 1.1009 +++ history.html 11 Oct 2010 22:16:57 -0000 1.1010 @@ -1627,8 +1627,9 @@ of the input stream.</p> <p>The rules for how to convert the bytes of the plain text document - into actual characters are defined in RFC 2046, RFC 2646, and - subsequent versions thereof. <a href="references.html#refsRFC2046">[RFC2046]</a> <a href="references.html#refsRFC2646">[RFC2646]</a></p> + into actual characters, and the rules for actually rendering the + text to the user, are defined in RFC 2046, RFC 2646, and subsequent + versions thereof. <a href="references.html#refsRFC2046">[RFC2046]</a> <a href="references.html#refsRFC2646">[RFC2646]</a></p> <p>The <a href="dom.html#document-s-character-encoding">document's character encoding</a> must be set to the character encoding used to decode the document.</p> @@ -1657,6 +1658,11 @@ binding, providing script, giving the document a <code><a href="semantics.html#the-title-element-0">title</a></code>, etc.</p> + <p class="note">In particular, if the user agent supports the <code title="">Format=Flowed</code> feature of RFC 2646 then the user + agent would need to apply extra styling to cause the text to wrap + correctly and to handle the quoting feature. This could be performed + using, e.g., an XBL binding or a CSS extension.</p> + <p>The <a href="webappapis.html#task-source">task source</a> for the two tasks mentioned in this section must be the <a href="webappapis.html#networking-task-source">networking task source</a>.</p> Index: spec.html =================================================================== RCS file: /sources/public/html5/spec/spec.html,v retrieving revision 1.1279 retrieving revision 1.1280 diff -u -d -r1.1279 -r1.1280 --- spec.html 7 Oct 2010 23:16:35 -0000 1.1279 +++ spec.html 11 Oct 2010 22:16:58 -0000 1.1280 @@ -320,7 +320,7 @@ <h1>HTML5</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-7-october-2010">Editor's Draft 7 October 2010</h2> + <h2 class="no-num no-toc" id="editor-s-draft-11-october-2010">Editor's Draft 11 October 2010</h2> <dl><dt>Latest Published Version:</dt> <dd><a href="http://www.w3.org/TR/html5/">http://www.w3.org/TR/html5/</a></dd> <dt>Latest Editor's Draft:</dt> @@ -341,7 +341,7 @@ <a href="Overview.html">single page HTML</a>, <a href="spec.html">multipage HTML</a>, <a href="author/">web developer edition</a>. -This is revision 1.4474. +This is revision 1.4476. </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 @@ -426,7 +426,7 @@ Group</a> is the W3C working group responsible for this specification's progress along the W3C Recommendation track. - This specification is the 7 October 2010 Editor's Draft. + This specification is the 11 October 2010 Editor's Draft. </p><!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- relationship to other work (required) --><p>Work on this specification is also done at the <a href="http://www.whatwg.org/">WHATWG</a>. The W3C HTML working group actively pursues convergence with the WHATWG, as required by the <a href="http://www.w3.org/2007/03/HTML-WG-charter">W3C HTML working group charter</a>.</p><!-- UNDER NO CIRCUMSTANCES IS THE FOLLOWING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- required patent boilerplate --><p>This document was produced by a group operating under the <a href="http://www.w3.org/Consortium/Patent-Policy-20040205/">5
Received on Monday, 11 October 2010 22:17:06 UTC