Skip to content

Commit

Permalink
[giow] (2) For compat with a legacy D-Link router, make U+FFFD not ki…
Browse files Browse the repository at this point in the history
…ll framesets.

Fixing http://www.w3.org/Bugs/Public/show_bug.cgi?id=9659

git-svn-id: http://svn.whatwg.org/webapps@5156 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Jul 14, 2010
1 parent 45e1472 commit 1db83ad
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 6 deletions.
13 changes: 11 additions & 2 deletions complete.html
Expand Up @@ -81451,8 +81451,17 @@ <h5 id=the-before-head-insertion-mode><span class=secno>12.2.5.6 </span>The "<df

<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>

Expand Down
13 changes: 11 additions & 2 deletions index
Expand Up @@ -74692,8 +74692,17 @@ document.body.appendChild(text);

<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>

Expand Down
13 changes: 11 additions & 2 deletions source
Expand Up @@ -93036,8 +93036,17 @@ document.body.appendChild(text);

<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>

Expand Down

0 comments on commit 1db83ad

Please sign in to comment.