Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[cgt] (2) Make &#xZ; for Z > 0x10FFFF return U+FFFD.
git-svn-id: http://svn.whatwg.org/webapps@3467 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Jul 26, 2009
1 parent 5ff4223 commit ed787d3
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
9 changes: 6 additions & 3 deletions index
Expand Up @@ -61360,7 +61360,11 @@ interface <dfn id=messageport>MessagePort</dfn> {
<tr><td>0x9D <td>U+009D <td>&lt;control&gt;
<tr><td>0x9E <td>U+017E <td>LATIN SMALL LETTER Z WITH CARON ('&#382;')
<tr><td>0x9F <td>U+0178 <td>LATIN CAPITAL LETTER Y WITH DIAERESIS ('&Yuml;')
</table><p>Otherwise, return a character token for the Unicode character
</table><p>Otherwise, if the number is greater than 0x10FFFF, then this is
a <a href=#parse-error>parse error</a>. Return a U+FFFD REPLACEMENT
CHARACTER.</p>

<p>Otherwise, return a character token for the Unicode character
whose code point is that number.

<!-- this is the same as the equivalent list in the input stream
Expand All @@ -61375,8 +61379,7 @@ interface <dfn id=messageport>MessagePort</dfn> {
0x6FFFF, 0x7FFFE, 0x7FFFF, 0x8FFFE, 0x8FFFF, 0x9FFFE, 0x9FFFF,
0xAFFFE, 0xAFFFF, 0xBFFFE, 0xBFFFF, 0xCFFFE, 0xCFFFF, 0xDFFFE,
0xDFFFF, 0xEFFFE, 0xEFFFF, 0xFFFFE, 0xFFFFF, 0x10FFFE, or
0x10FFFF, or is higher than 0x10FFFF, then this is a <a href=#parse-error>parse
error</a>.</p>
0x10FFFF, then this is a <a href=#parse-error>parse error</a>.</p>

</dd>

Expand Down
7 changes: 5 additions & 2 deletions source
Expand Up @@ -75365,6 +75365,10 @@ interface <dfn>MessagePort</dfn> {
<tr><td>0x9F <td>U+0178 <td>LATIN CAPITAL LETTER Y WITH DIAERESIS ('&#x0178;')
</table>

<p>Otherwise, if the number is greater than 0x10FFFF, then this is
a <span>parse error</span>. Return a U+FFFD REPLACEMENT
CHARACTER.</p>

<p>Otherwise, return a character token for the Unicode character
whose code point is that number.

Expand All @@ -75380,8 +75384,7 @@ interface <dfn>MessagePort</dfn> {
0x6FFFF, 0x7FFFE, 0x7FFFF, 0x8FFFE, 0x8FFFF, 0x9FFFE, 0x9FFFF,
0xAFFFE, 0xAFFFF, 0xBFFFE, 0xBFFFF, 0xCFFFE, 0xCFFFF, 0xDFFFE,
0xDFFFF, 0xEFFFE, 0xEFFFF, 0xFFFFE, 0xFFFFF, 0x10FFFE, or
0x10FFFF, or is higher than 0x10FFFF, then this is a <span>parse
error</span>.</p>
0x10FFFF, then this is a <span>parse error</span>.</p>

</dd>

Expand Down

0 comments on commit ed787d3

Please sign in to comment.