bug 287990: Bring back <plaintext> support. This supports it "properly" (i.e., no end tag). r=jst sr=dbaron a=shaver

This commit is contained in:
mrbkap%gmail.com 2005-06-01 22:30:43 +00:00
Родитель fd1cb665a9
Коммит 5f252c1063
1 изменённых файлов: 6 добавлений и 0 удалений

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

@ -1358,6 +1358,12 @@ CParserContext* nsParser::PopContext()
if (mParserContext->mStreamListenerState != eOnStop) {
mParserContext->mStreamListenerState = oldContext->mStreamListenerState;
}
// Update the current context's tokenizer to any information gleaned
// while parsing document.write() calls (such as "a plaintext tag was
// found")
if (mParserContext->mTokenizer) {
mParserContext->mTokenizer->CopyState(oldContext->mTokenizer);
}
}
}
return oldContext;