mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-03 14:28:39 +09:00
Adjust tokenization of U+0000
This commit is contained in:
parent
df83678e80
commit
0e80c15692
1 changed files with 2 additions and 13 deletions
|
|
@ -1054,9 +1054,6 @@ nsHtml5Tokenizer::stateLoop(int32_t state, char16_t c, int32_t pos, char16_t* bu
|
|||
}
|
||||
c = checkChar(buf, pos);
|
||||
switch(c) {
|
||||
case '\0': {
|
||||
NS_HTML5_BREAK(stateloop);
|
||||
}
|
||||
case '-': {
|
||||
clearStrBufAfterOneHyphen();
|
||||
state = P::transition(mViewSource, NS_HTML5TOKENIZER_COMMENT_START, reconsume, pos);
|
||||
|
|
@ -1461,9 +1458,6 @@ nsHtml5Tokenizer::stateLoop(int32_t state, char16_t c, int32_t pos, char16_t* bu
|
|||
NS_HTML5_BREAK(stateloop);
|
||||
}
|
||||
c = checkChar(buf, pos);
|
||||
if (c == '\0') {
|
||||
NS_HTML5_BREAK(stateloop);
|
||||
}
|
||||
switch(c) {
|
||||
case ' ':
|
||||
case '\t':
|
||||
|
|
@ -1471,7 +1465,8 @@ nsHtml5Tokenizer::stateLoop(int32_t state, char16_t c, int32_t pos, char16_t* bu
|
|||
case '\r':
|
||||
case '\f':
|
||||
case '<':
|
||||
case '&': {
|
||||
case '&':
|
||||
case '\0': {
|
||||
emitOrAppendCharRefBuf(returnState);
|
||||
if (!(returnState & NS_HTML5TOKENIZER_DATA_AND_RCDATA_MASK)) {
|
||||
cstart = pos;
|
||||
|
|
@ -1519,9 +1514,6 @@ nsHtml5Tokenizer::stateLoop(int32_t state, char16_t c, int32_t pos, char16_t* bu
|
|||
NS_HTML5_BREAK(stateloop);
|
||||
}
|
||||
c = checkChar(buf, pos);
|
||||
if (c == '\0') {
|
||||
NS_HTML5_BREAK(stateloop);
|
||||
}
|
||||
int32_t hilo = 0;
|
||||
if (c <= 'z') {
|
||||
const int32_t* row = nsHtml5NamedCharactersAccel::HILO_ACCEL[c];
|
||||
|
|
@ -1556,9 +1548,6 @@ nsHtml5Tokenizer::stateLoop(int32_t state, char16_t c, int32_t pos, char16_t* bu
|
|||
NS_HTML5_BREAK(stateloop);
|
||||
}
|
||||
c = checkChar(buf, pos);
|
||||
if (c == '\0') {
|
||||
NS_HTML5_BREAK(stateloop);
|
||||
}
|
||||
entCol++;
|
||||
for (; ; ) {
|
||||
if (hi < lo) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue