[html5] r5156 - [giow] (2) For compat with a legacy D-Link router, make U+FFFD not kill frameset [...]
whatwg at whatwg.org
whatwg at whatwg.org
Tue Jul 13 17:45:46 PDT 2010
Author: ianh
Date: 2010-07-13 17:45:45 -0700 (Tue, 13 Jul 2010)
New Revision: 5156
Modified:
complete.html
index
source
Log:
[giow] (2) For compat with a legacy D-Link router, make U+FFFD not kill framesets.
Fixing http://www.w3.org/Bugs/Public/show_bug.cgi?id=9659
Modified: complete.html
===================================================================
--- complete.html 2010-07-14 00:32:56 UTC (rev 5155)
+++ complete.html 2010-07-14 00:45:45 UTC (rev 5156)
@@ -81451,9 +81451,18 @@
<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>
<dt>A comment token</dt>
Modified: index
===================================================================
--- index 2010-07-14 00:32:56 UTC (rev 5155)
+++ index 2010-07-14 00:45:45 UTC (rev 5156)
@@ -74692,9 +74692,18 @@
<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>
<dt>A comment token</dt>
Modified: source
===================================================================
--- source 2010-07-14 00:32:56 UTC (rev 5155)
+++ source 2010-07-14 00:45:45 UTC (rev 5156)
@@ -93036,9 +93036,18 @@
<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 <span>frameset-ok
- flag</span> to "not ok".</p>
+ (CR), U+0020 SPACE, or U+FFFD REPLACEMENT CHARACTER, then set the
+ <span>frameset-ok flag</span> 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>
<dt>A comment token</dt>
More information about the Commit-Watchers
mailing list