Backed out 3 changesets (bug 1799732) for causing build bustages in nsIFrame.cpp CLOSED TREE

Backed out changeset e559f9dbc76f (bug 1799732)
Backed out changeset c40fda7a8b0b (bug 1799732)
Backed out changeset 1f84bfb41ab8 (bug 1799732)
This commit is contained in:
Noemi Erli
2022-11-12 02:16:45 +02:00
parent 7c6d80d4ea
commit a66dba1527
54 changed files with 500 additions and 523 deletions

View File

@@ -6061,7 +6061,7 @@ void PresShell::MarkFramesInSubtreeApproximatelyVisible(
bool preserves3DChildren = aFrame->Extend3DContext();
for (const auto& [list, listID] : aFrame->ChildLists()) {
if (listID == FrameChildListID::Popup) {
if (listID == nsIFrame::kPopupList) {
// We assume all frames in popups are visible, so we skip them here.
continue;
}
@@ -11201,7 +11201,7 @@ void PresShell::MarkFixedFramesForReflow(IntrinsicDirty aIntrinsicDirty) {
nsIFrame* rootFrame = mFrameConstructor->GetRootFrame();
if (rootFrame) {
const nsFrameList& childList =
rootFrame->GetChildList(FrameChildListID::Fixed);
rootFrame->GetChildList(nsIFrame::kFixedList);
for (nsIFrame* childFrame : childList) {
FrameNeedsReflow(childFrame, aIntrinsicDirty, NS_FRAME_IS_DIRTY);
}