- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 14 Jul 2010 00:47:12 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv11852 Modified Files: spec.html tokenization.html Log Message: For compat with a legacy D-Link router, make U+FFFD not kill framesets. (whatwg r5156) [updated by splitter] Index: tokenization.html =================================================================== RCS file: /sources/public/html5/spec/tokenization.html,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- tokenization.html 2 Jul 2010 23:06:48 -0000 1.6 +++ tokenization.html 14 Jul 2010 00:47:10 -0000 1.7 @@ -3397,8 +3397,17 @@ <p>If the token is not one of U+0009 CHARACTER TABULATION, U+000A LINE FEED (LF), U+000C FORM FEED (FF), U+000D CARRIAGE RETURN - (CR), or U+0020 SPACE, then set the <a href="parsing.html#frameset-ok-flag">frameset-ok - flag</a> to "not ok".</p> + (CR), U+0020 SPACE, or U+FFFD REPLACEMENT CHARACTER, then set the + <a href="parsing.html#frameset-ok-flag">frameset-ok flag</a> to "not ok".</p> + + <!-- U+FFFD REPLACEMENT CHARACTER is in this list because the + D-Link DSL-G604T ADSL router has a zero byte in its + configuration UI before a <frameset>. Zero bytes get + converted to U+FFFD, which (without that character in this + list) would mean the <frameset> would be ignored. + refs: https://bugzilla.mozilla.org/show_bug.cgi?id=563526 + http://www.w3.org/Bugs/Public/show_bug.cgi?id=9659 + --> </dd> @@ -5656,20 +5665,18 @@ <li><p>Set <var title="">node</var> to the previous entry in the <a href="parsing.html#stack-of-open-elements">stack of open elements</a>.</p></li> - <li> - - <p>If <var title="">node</var> is an element in the <a href="namespaces.html#html-namespace-0">HTML - namespace</a>, process the token <a href="parsing.html#using-the-rules-for">using the rules - for</a> the <a href="parsing.html#secondary-insertion-mode">secondary insertion mode</a>. If, after - doing so, the <a href="parsing.html#insertion-mode">insertion mode</a> is still "<a href="#parsing-main-inforeign" title="insertion mode: in foreign content">in foreign - content</a>", but there is no element <a href="parsing.html#has-an-element-in-scope" title="has an - element in scope">in scope</a> that has a namespace other - than the <a href="namespaces.html#html-namespace-0">HTML namespace</a>, switch the <a href="parsing.html#insertion-mode">insertion - mode</a> to the <a href="parsing.html#secondary-insertion-mode">secondary insertion mode</a>.</p> - - </li> + <li><p>If <var title="">node</var> is not an element in the + <a href="namespaces.html#html-namespace-0">HTML namespace</a>, return to the step labeled + <i>loop</i>.</p></li> - <li><p>Return to the step labeled <i>loop</i>.</p></li> + <li><p>Otherwise, process the token <a href="parsing.html#using-the-rules-for">using the rules + for</a> the <a href="parsing.html#secondary-insertion-mode">secondary insertion mode</a>. If, after + doing so, the <a href="parsing.html#insertion-mode">insertion mode</a> is still "<a href="#parsing-main-inforeign" title="insertion mode: in foreign content">in foreign + content</a>", but there is no element <a href="parsing.html#has-an-element-in-scope" title="has an + element in scope">in scope</a> that has a namespace other than + the <a href="namespaces.html#html-namespace-0">HTML namespace</a>, switch the <a href="parsing.html#insertion-mode">insertion + mode</a> to the <a href="parsing.html#secondary-insertion-mode">secondary insertion + mode</a>.</p></li> </ol></dd> Index: spec.html =================================================================== RCS file: /sources/public/html5/spec/spec.html,v retrieving revision 1.1051 retrieving revision 1.1052 diff -u -d -r1.1051 -r1.1052 --- spec.html 13 Jul 2010 00:47:18 -0000 1.1051 +++ spec.html 14 Jul 2010 00:47:02 -0000 1.1052 @@ -312,7 +312,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-13-july-2010">Editor's Draft 13 July 2010</h2> + <h2 class="no-num no-toc" id="editor-s-draft-14-july-2010">Editor's Draft 14 July 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> @@ -333,7 +333,7 @@ <a href="Overview.html">single page HTML</a>, <a href="spec.html">multipage HTML</a>, <a href="author/">author edition</a>. -This is revision 1.4111. +This is revision 1.4112. </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 @@ -418,7 +418,7 @@ Group</a> is the W3C working group responsible for this specification's progress along the W3C Recommendation track. - This specification is the 13 July 2010 Editor's Draft. + This specification is the 14 July 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 Wednesday, 14 July 2010 00:47:20 UTC