Skip to content

Commit

Permalink
[ct] (0) Change how <font> is handled in foreign content.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.whatwg.org/webapps@2590 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Dec 25, 2008
1 parent e012812 commit 2098d10
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
8 changes: 6 additions & 2 deletions index
Expand Up @@ -51291,8 +51291,8 @@ interface <dfn id=messagechannel>MessageChannel</dfn> {
<dt>A start tag whose tag name is one of: <!--"a",--> "b", "big",
"blockquote", "body"<!--by inspection-->, "br", "center", "code",
"dd", "div", "dl", "dt"<!-- so that dd and dt can be handled
uniformly throughout the parser -->, "em", "embed", "font", "h1",
"h2", "h3", "h4"<!--for completeness-->, "h5", "h6"<!--for
uniformly throughout the parser -->, "em", "embed", "h1", "h2",
"h3", "h4"<!--for completeness-->, "h5", "h6"<!--for
completeness-->, "head"<!--by inspection-->, "hr", "i", "img",
"li", "listing"<!-- so that pre and listing can be handled
uniformly throughout the parser -->, "menu", "meta", "nobr",
Expand All @@ -51303,6 +51303,10 @@ interface <dfn id=messagechannel>MessageChannel</dfn> {
"table"<!--by inspection-->, "tt", "u", "ul", "var"</dt>
<!-- this list was determined empirically by studying over
6,000,000,000 pages that were specifically not XML pages -->
<dt>A start tag whose tag name is "font", if the token has
any attributes named "color", "face", or "size"</dt>
<!-- the attributes here are required so that SVG <font> will go
through as SVG but legacy <font>s won't -->
<dt>An end-of-file token</dt>
<dd>

Expand Down
8 changes: 6 additions & 2 deletions source
Expand Up @@ -58395,8 +58395,8 @@ interface <dfn>MessageChannel</dfn> {
<dt>A start tag whose tag name is one of: <!--"a",--> "b", "big",
"blockquote", "body"<!--by inspection-->, "br", "center", "code",
"dd", "div", "dl", "dt"<!-- so that dd and dt can be handled
uniformly throughout the parser -->, "em", "embed", "font", "h1",
"h2", "h3", "h4"<!--for completeness-->, "h5", "h6"<!--for
uniformly throughout the parser -->, "em", "embed", "h1", "h2",
"h3", "h4"<!--for completeness-->, "h5", "h6"<!--for
completeness-->, "head"<!--by inspection-->, "hr", "i", "img",
"li", "listing"<!-- so that pre and listing can be handled
uniformly throughout the parser -->, "menu", "meta", "nobr",
Expand All @@ -58407,6 +58407,10 @@ interface <dfn>MessageChannel</dfn> {
"table"<!--by inspection-->, "tt", "u", "ul", "var"</dt>
<!-- this list was determined empirically by studying over
6,000,000,000 pages that were specifically not XML pages -->
<dt>A start tag whose tag name is "font", if the token has
any attributes named "color", "face", or "size"</dt>
<!-- the attributes here are required so that SVG <font> will go
through as SVG but legacy <font>s won't -->
<dt>An end-of-file token</dt>
<dd>

Expand Down

0 comments on commit 2098d10

Please sign in to comment.