зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1728706. Use IsRootContentDocumentCrossProcess for top layer related optimization in ScrollFrameHelper::BuildDisplayList. r=botond
The reason this IsRootContentDocument check was added was because of a test where there is fixed pos content in the top layer of a subdocument. This fixed pos content gets removed from the display list as part of this optimization. So no WebRenderLayerScrollData gets created for the asr of this fixed pos content, which causes an assert. (from https://bugzilla.mozilla.org/show_bug.cgi?id=1664804#c18 ) The code that ensures there is WebRenderLayerScrollData for the root asr is here https://searchfox.org/mozilla-central/rev/55e8eba74b60b92d04b781f7928f54ef76b13fa9/gfx/layers/wr/WebRenderCommandBuilder.cpp#1636 and it happens for all root content documents in the process, so this optimization is valid for any root content document in the process. Differential Revision: https://phabricator.services.mozilla.com/D124298
This commit is contained in:
Родитель
38e8910b47
Коммит
185e176645
|
@ -4060,13 +4060,15 @@ void ScrollFrameHelper::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||||
bool topLayerIsOpaque = false;
|
bool topLayerIsOpaque = false;
|
||||||
if (nsDisplayWrapList* topLayerWrapList =
|
if (nsDisplayWrapList* topLayerWrapList =
|
||||||
MaybeCreateTopLayerItems(aBuilder, &topLayerIsOpaque)) {
|
MaybeCreateTopLayerItems(aBuilder, &topLayerIsOpaque)) {
|
||||||
// If the top layer content is opaque, and we're the root content document,
|
// If the top layer content is opaque, and we're the root content document
|
||||||
// we can drop the display items behind it. We only support doing this for
|
// in the process, we can drop the display items behind it. We only support
|
||||||
// the root document, since the top layer content might have fixed position
|
// doing this for the root content document in the process, since the top
|
||||||
// items that have a scrolltarget referencing the APZ data for the document.
|
// layer content might have fixed position items that have a scrolltarget
|
||||||
// APZ builds this data implicitly for the root document, but subdocuments
|
// referencing the APZ data for the document. APZ builds this data
|
||||||
// need their display items to generate it, so we can't cull those.
|
// implicitly for the root content document in the process, but subdocuments
|
||||||
if (topLayerIsOpaque && mOuter->PresContext()->IsRootContentDocument()) {
|
// etc need their display items to generate it, so we can't cull those.
|
||||||
|
if (topLayerIsOpaque &&
|
||||||
|
mOuter->PresContext()->IsRootContentDocumentInProcess()) {
|
||||||
set.DeleteAll(aBuilder);
|
set.DeleteAll(aBuilder);
|
||||||
}
|
}
|
||||||
set.PositionedDescendants()->AppendToTop(topLayerWrapList);
|
set.PositionedDescendants()->AppendToTop(topLayerWrapList);
|
||||||
|
|
Загрузка…
Ссылка в новой задаче