Skip to content

Commit

Permalink
[cgwt] (2) Remove all remaining magic of the < character in tokeniser.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.whatwg.org/webapps@902 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Jun 15, 2007
1 parent 4ee6154 commit 96ef297
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 20 deletions.
20 changes: 8 additions & 12 deletions index
Expand Up @@ -33813,12 +33813,11 @@ function receiver(e) {
0x0020 to the character's code point) to the current tag token's tag
name. Stay in the <a href="#tag-name0">tag name state</a>.

<dt>U+003C LESS-THAN SIGN (&lt;)

<dt>EOF

<dd><a href="#parse">Parse error</a>. Emit the current tag token.
Reconsume the character in the <a href="#data-state">data state</a>.
Reconsume the EOF character in the <a href="#data-state">data
state</a>.

<dt>U+002F SOLIDUS (/)

Expand Down Expand Up @@ -33870,12 +33869,11 @@ function receiver(e) {
href="#permitted">permitted slash</a>. Stay in the <a
href="#before">before attribute name state</a>.

<dt>U+003C LESS-THAN SIGN (&lt;)

<dt>EOF

<dd><a href="#parse">Parse error</a>. Emit the current tag token.
Reconsume the character in the <a href="#data-state">data state</a>.
Reconsume the EOF character in the <a href="#data-state">data
state</a>.

<dt>Anything else

Expand Down Expand Up @@ -33925,12 +33923,11 @@ function receiver(e) {
href="#permitted">permitted slash</a>. Switch to the <a
href="#before">before attribute name state</a>.

<dt>U+003C LESS-THAN SIGN (&lt;)

<dt>EOF

<dd><a href="#parse">Parse error</a>. Emit the current tag token.
Reconsume the character in the <a href="#data-state">data state</a>.
Reconsume the EOF character in the <a href="#data-state">data
state</a>.

<dt>Anything else

Expand Down Expand Up @@ -33987,12 +33984,11 @@ function receiver(e) {
href="#permitted">permitted slash</a>. Switch to the <a
href="#before">before attribute name state</a>.

<dt>U+003C LESS-THAN SIGN (&lt;)

<dt>EOF

<dd><a href="#parse">Parse error</a>. Emit the current tag token.
Reconsume the character in the <a href="#data-state">data state</a>.
Reconsume the EOF character in the <a href="#data-state">data
state</a>.

<dt>Anything else

Expand Down
12 changes: 4 additions & 8 deletions source
Expand Up @@ -31420,10 +31420,9 @@ function receiver(e) {
(add 0x0020 to the character's code point) to the current tag
token's tag name. Stay in the <span>tag name state</span>.</dd>

<dt>U+003C LESS-THAN SIGN (&lt;)</dt>
<dt>EOF</dt>
<dd><span>Parse error</span>. Emit the current tag
token. Reconsume the character in the <span>data
token. Reconsume the EOF character in the <span>data
state</span>.</dd>

<dt>U+002F SOLIDUS (/)</dt>
Expand Down Expand Up @@ -31471,10 +31470,9 @@ function receiver(e) {
slash</span>. Stay in the <span>before attribute name
state</span>.</dd>

<dt>U+003C LESS-THAN SIGN (&lt;)</dt>
<dt>EOF</dt>
<dd><span>Parse error</span>. Emit the current tag
token. Reconsume the character in the <span>data
token. Reconsume the EOF character in the <span>data
state</span>.</dd>

<dt>Anything else</dt>
Expand Down Expand Up @@ -31521,10 +31519,9 @@ function receiver(e) {
slash</span>. Switch to the <span>before attribute name
state</span>.</dd>

<dt>U+003C LESS-THAN SIGN (&lt;)</dt>
<dt>EOF</dt>
<dd><span>Parse error</span>. Emit the current tag
token. Reconsume the character in the <span>data
token. Reconsume the EOF character in the <span>data
state</span>.</dd>

<dt>Anything else</dt>
Expand Down Expand Up @@ -31578,10 +31575,9 @@ function receiver(e) {
slash</span>. Switch to the <span>before attribute name
state</span>.</dd>

<dt>U+003C LESS-THAN SIGN (&lt;)</dt>
<dt>EOF</dt>
<dd><span>Parse error</span>. Emit the current tag
token. Reconsume the character in the <span>data
token. Reconsume the EOF character in the <span>data
state</span>.</dd>

<dt>Anything else</dt>
Expand Down

0 comments on commit 96ef297

Please sign in to comment.