Bug 535499 - Copy the return state over when loading HTML5 tokenizer state from another tokenizer. rs=sicking.

This commit is contained in:
Henri Sivonen 2009-12-17 12:15:08 +02:00
Родитель 3a2e2601d9
Коммит 153906c21e
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -3903,6 +3903,7 @@ nsHtml5Tokenizer::loadState(nsHtml5Tokenizer* other)
}
nsHtml5ArrayCopy::arraycopy(other->longStrBuf, longStrBuf, longStrBufLen);
stateSave = other->stateSave;
returnStateSave = other->returnStateSave;
lastCR = other->lastCR;
index = other->index;
forceQuirks = other->forceQuirks;