- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 14 Jul 2010 00:46:16 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv11722
Modified Files:
Overview.html
Log Message:
For compat with a legacy D-Link router, make U+FFFD not kill framesets. (whatwg r5156)
Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.4111
retrieving revision 1.4112
diff -u -d -r1.4111 -r1.4112
--- Overview.html 13 Jul 2010 00:44:36 -0000 1.4111
+++ Overview.html 14 Jul 2010 00:45:58 -0000 1.4112
@@ -308,7 +308,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>
@@ -414,7 +414,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
@@ -56250,8 +56250,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="#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="#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>
@@ -58509,20 +58518,18 @@
<li><p>Set <var title="">node</var> to the previous entry in the
<a href="#stack-of-open-elements">stack of open elements</a>.</li>
- <li>
-
- <p>If <var title="">node</var> is an element in the <a href="#html-namespace-0">HTML
- namespace</a>, process the token <a href="#using-the-rules-for">using the rules
- for</a> the <a href="#secondary-insertion-mode">secondary insertion mode</a>. If, after
- doing so, the <a href="#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="#has-an-element-in-scope" title="has an
- element in scope">in scope</a> that has a namespace other
- than the <a href="#html-namespace-0">HTML namespace</a>, switch the <a href="#insertion-mode">insertion
- mode</a> to the <a href="#secondary-insertion-mode">secondary insertion mode</a>.</p>
-
- </li>
+ <li><p>If <var title="">node</var> is not an element in the
+ <a href="#html-namespace-0">HTML namespace</a>, return to the step labeled
+ <i>loop</i>.</li>
- <li><p>Return to the step labeled <i>loop</i>.</li>
+ <li><p>Otherwise, process the token <a href="#using-the-rules-for">using the rules
+ for</a> the <a href="#secondary-insertion-mode">secondary insertion mode</a>. If, after
+ doing so, the <a href="#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="#has-an-element-in-scope" title="has an
+ element in scope">in scope</a> that has a namespace other than
+ the <a href="#html-namespace-0">HTML namespace</a>, switch the <a href="#insertion-mode">insertion
+ mode</a> to the <a href="#secondary-insertion-mode">secondary insertion
+ mode</a>.</li>
</ol></dd>
Received on Wednesday, 14 July 2010 00:46:31 UTC