зеркало из https://github.com/mozilla/gecko-dev.git
Fix very long-standing bug with incorrect insertion indices reported by the HTML content sink. Bug 404553, r+sr=peterv, a=schrep
This commit is contained in:
Родитель
5598378f56
Коммит
8da3f16fa9
|
@ -1391,7 +1391,7 @@ SinkContext::FlushTags()
|
||||||
nsIContent* child = mStack[stackPos + 1].mContent;
|
nsIContent* child = mStack[stackPos + 1].mContent;
|
||||||
mSink->NotifyInsert(content,
|
mSink->NotifyInsert(content,
|
||||||
child,
|
child,
|
||||||
mStack[stackPos].mInsertionPoint);
|
mStack[stackPos].mInsertionPoint - 1);
|
||||||
} else {
|
} else {
|
||||||
mSink->NotifyAppend(content, mStack[stackPos].mNumFlushed);
|
mSink->NotifyAppend(content, mStack[stackPos].mNumFlushed);
|
||||||
}
|
}
|
||||||
|
|
Загрузка…
Ссылка в новой задаче