mirror of
https://github.com/roytam1/UXP.git
synced 2026-05-26 13:58:49 +00:00
Issue #1355 - Store the dirty rect on the display list builder rather than passing it as a parameter to BuildDisplayList
Also fix build bustage for De-unified layout/xul in nsRootBoxFrame.cpp
This commit is contained in:
@@ -864,10 +864,9 @@ nsDisplayListBuilder::FindAnimatedGeometryRootFor(nsDisplayItem* aItem)
|
||||
|
||||
|
||||
void nsDisplayListBuilder::MarkOutOfFlowFrameForDisplay(nsIFrame* aDirtyFrame,
|
||||
nsIFrame* aFrame,
|
||||
const nsRect& aDirtyRect)
|
||||
nsIFrame* aFrame)
|
||||
{
|
||||
nsRect dirtyRectRelativeToDirtyFrame = aDirtyRect;
|
||||
nsRect dirtyRectRelativeToDirtyFrame = GetDirtyRect();
|
||||
if (nsLayoutUtils::IsFixedPosFrameInDisplayPort(aFrame) &&
|
||||
IsPaintingToWindow()) {
|
||||
NS_ASSERTION(aDirtyFrame == aFrame->GetParent(), "Dirty frame should be viewport frame");
|
||||
@@ -882,7 +881,9 @@ void nsDisplayListBuilder::MarkOutOfFlowFrameForDisplay(nsIFrame* aDirtyFrame,
|
||||
dirtyRectRelativeToDirtyFrame.SizeTo(aDirtyFrame->GetSize());
|
||||
}
|
||||
}
|
||||
nsRect dirty = dirtyRectRelativeToDirtyFrame - aFrame->GetOffsetTo(aDirtyFrame);
|
||||
|
||||
nsPoint offset = aFrame->GetOffsetTo(aDirtyFrame);
|
||||
nsRect dirty = dirtyRectRelativeToDirtyFrame - offset;
|
||||
nsRect overflowRect = aFrame->GetVisualOverflowRect();
|
||||
|
||||
if (aFrame->IsTransformed() &&
|
||||
@@ -1094,8 +1095,7 @@ nsDisplayListBuilder::ResetMarkedFramesForDisplayList()
|
||||
|
||||
void
|
||||
nsDisplayListBuilder::MarkFramesForDisplayList(nsIFrame* aDirtyFrame,
|
||||
const nsFrameList& aFrames,
|
||||
const nsRect& aDirtyRect) {
|
||||
const nsFrameList& aFrames) {
|
||||
for (nsIFrame* e : aFrames) {
|
||||
// Skip the AccessibleCaret frame when building no caret.
|
||||
if (!IsBuildingCaret()) {
|
||||
@@ -1107,9 +1107,8 @@ nsDisplayListBuilder::MarkFramesForDisplayList(nsIFrame* aDirtyFrame,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
mFramesMarkedForDisplay.AppendElement(e);
|
||||
MarkOutOfFlowFrameForDisplay(aDirtyFrame, e, aDirtyRect);
|
||||
MarkOutOfFlowFrameForDisplay(aDirtyFrame, e);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2626,7 +2625,6 @@ SpecialCutoutRegionCase(nsDisplayListBuilder* aBuilder,
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
/*static*/ bool
|
||||
nsDisplayBackgroundImage::AppendBackgroundItemsToTop(nsDisplayListBuilder* aBuilder,
|
||||
nsIFrame* aFrame,
|
||||
|
||||
+13
-12
@@ -444,6 +444,10 @@ public:
|
||||
* BuildDisplayList on right now).
|
||||
*/
|
||||
const nsRect& GetDirtyRect() { return mDirtyRect; }
|
||||
|
||||
void SetDirtyRect(const nsRect& aDirtyRect) { mDirtyRect = aDirtyRect; }
|
||||
void IntersectDirtyRect(const nsRect& aDirtyRect) { mDirtyRect.IntersectRect(mDirtyRect, aDirtyRect); }
|
||||
|
||||
const nsIFrame* GetCurrentFrame() { return mCurrentFrame; }
|
||||
const nsIFrame* GetCurrentReferenceFrame() { return mCurrentReferenceFrame; }
|
||||
const nsPoint& GetCurrentFrameOffsetToReferenceFrame() { return mCurrentOffsetToReferenceFrame; }
|
||||
@@ -493,11 +497,10 @@ public:
|
||||
/**
|
||||
* Display the caret if needed.
|
||||
*/
|
||||
void DisplayCaret(nsIFrame* aFrame, const nsRect& aDirtyRect,
|
||||
nsDisplayList* aList) {
|
||||
void DisplayCaret(nsIFrame* aFrame, nsDisplayList* aList) {
|
||||
nsIFrame* frame = GetCaretFrame();
|
||||
if (aFrame == frame) {
|
||||
frame->DisplayCaret(this, aDirtyRect, aList);
|
||||
frame->DisplayCaret(this, aList);
|
||||
}
|
||||
}
|
||||
/**
|
||||
@@ -602,8 +605,7 @@ public:
|
||||
* destroyed.
|
||||
*/
|
||||
void MarkFramesForDisplayList(nsIFrame* aDirtyFrame,
|
||||
const nsFrameList& aFrames,
|
||||
const nsRect& aDirtyRect);
|
||||
const nsFrameList& aFrames);
|
||||
/**
|
||||
* Mark all child frames that Preserve3D() as needing display.
|
||||
* Because these frames include transforms set on their parent, dirty rects
|
||||
@@ -700,8 +702,8 @@ public:
|
||||
friend class AutoBuildingDisplayList;
|
||||
class AutoBuildingDisplayList {
|
||||
public:
|
||||
AutoBuildingDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
nsIFrame* aForChild,
|
||||
|
||||
AutoBuildingDisplayList(nsDisplayListBuilder* aBuilder, nsIFrame* aForChild,
|
||||
const nsRect& aDirtyRect, bool aIsRoot)
|
||||
: mBuilder(aBuilder),
|
||||
mPrevFrame(aBuilder->mCurrentFrame),
|
||||
@@ -1120,11 +1122,11 @@ public:
|
||||
Preserves3DContext mSavedCtx;
|
||||
};
|
||||
|
||||
const nsRect GetPreserves3DDirtyRect(const nsIFrame *aFrame) const {
|
||||
const nsRect GetPreserves3DRects() const {
|
||||
return mPreserves3DCtx.mDirtyRect;
|
||||
}
|
||||
void SetPreserves3DDirtyRect(const nsRect &aDirtyRect) {
|
||||
mPreserves3DCtx.mDirtyRect = aDirtyRect;
|
||||
void SavePreserves3DRects() {
|
||||
mPreserves3DCtx.mDirtyRect = mDirtyRect;
|
||||
}
|
||||
|
||||
bool IsBuildingInvisibleItems() const { return mBuildingInvisibleItems; }
|
||||
@@ -1133,8 +1135,7 @@ public:
|
||||
}
|
||||
|
||||
private:
|
||||
void MarkOutOfFlowFrameForDisplay(nsIFrame* aDirtyFrame, nsIFrame* aFrame,
|
||||
const nsRect& aDirtyRect);
|
||||
void MarkOutOfFlowFrameForDisplay(nsIFrame* aDirtyFrame, nsIFrame* aFrame);
|
||||
|
||||
/**
|
||||
* Returns whether a frame acts as an animated geometry root, optionally
|
||||
|
||||
@@ -3111,7 +3111,8 @@ nsLayoutUtils::GetFramesForArea(nsIFrame* aFrame, const nsRect& aRect,
|
||||
}
|
||||
|
||||
builder.EnterPresShell(aFrame);
|
||||
aFrame->BuildDisplayListForStackingContext(&builder, aRect, &list);
|
||||
builder.SetDirtyRect(aRect);
|
||||
aFrame->BuildDisplayListForStackingContext(&builder, &list);
|
||||
builder.LeavePresShell(aFrame, nullptr);
|
||||
|
||||
#ifdef MOZ_DUMP_PAINTING
|
||||
@@ -3460,7 +3461,8 @@ nsLayoutUtils::PaintFrame(nsRenderingContext* aRenderingContext, nsIFrame* aFram
|
||||
PROFILER_LABEL("nsLayoutUtils", "PaintFrame::BuildDisplayList",
|
||||
js::ProfileEntry::Category::GRAPHICS);
|
||||
|
||||
aFrame->BuildDisplayListForStackingContext(&builder, dirtyRect, &list);
|
||||
builder.SetDirtyRect(dirtyRect);
|
||||
aFrame->BuildDisplayListForStackingContext(&builder, &list);
|
||||
}
|
||||
|
||||
nsIAtom* frameType = aFrame->GetType();
|
||||
|
||||
@@ -4868,8 +4868,8 @@ PresShell::CreateRangePaintInfo(nsIDOMRange* aRange,
|
||||
nsIFrame* frame = aNode->AsContent()->GetPrimaryFrame();
|
||||
// XXX deal with frame being null due to display:contents
|
||||
for (; frame; frame = nsLayoutUtils::GetNextContinuationOrIBSplitSibling(frame)) {
|
||||
frame->BuildDisplayListForStackingContext(&info->mBuilder,
|
||||
frame->GetVisualOverflowRect(), &info->mList);
|
||||
info->mBuilder.SetDirtyRect(frame->GetVisualOverflowRect());
|
||||
frame->BuildDisplayListForStackingContext(&info->mBuilder, &info->mList);
|
||||
}
|
||||
};
|
||||
if (startParent->NodeType() == nsIDOMNode::TEXT_NODE) {
|
||||
|
||||
@@ -1297,7 +1297,6 @@ public:
|
||||
nsReflowStatus& aStatus) override;
|
||||
|
||||
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) override;
|
||||
|
||||
protected:
|
||||
@@ -1338,11 +1337,10 @@ nsComboboxDisplayFrame::Reflow(nsPresContext* aPresContext,
|
||||
|
||||
void
|
||||
nsComboboxDisplayFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists)
|
||||
{
|
||||
nsDisplayListCollection set;
|
||||
nsBlockFrame::BuildDisplayList(aBuilder, aDirtyRect, set);
|
||||
nsBlockFrame::BuildDisplayList(aBuilder, set);
|
||||
|
||||
// remove background items if parent frame is themed
|
||||
if (mComboBox->IsThemed()) {
|
||||
@@ -1543,13 +1541,8 @@ void nsDisplayComboboxFocus::Paint(nsDisplayListBuilder* aBuilder,
|
||||
|
||||
void
|
||||
nsComboboxControlFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists)
|
||||
{
|
||||
#ifdef NOISY
|
||||
printf("%p paint at (%d, %d, %d, %d)\n", this,
|
||||
aDirtyRect.x, aDirtyRect.y, aDirtyRect.width, aDirtyRect.height);
|
||||
#endif
|
||||
|
||||
if (aBuilder->IsForEventDelivery()) {
|
||||
// Don't allow children to receive events.
|
||||
@@ -1558,7 +1551,7 @@ nsComboboxControlFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
} else {
|
||||
// REVIEW: Our in-flow child frames are inline-level so they will paint in our
|
||||
// content list, so we don't need to mess with layers.
|
||||
nsBlockFrame::BuildDisplayList(aBuilder, aDirtyRect, aLists);
|
||||
nsBlockFrame::BuildDisplayList(aBuilder, aLists);
|
||||
}
|
||||
|
||||
// draw a focus indicator only when focus rings should be drawn
|
||||
|
||||
@@ -92,7 +92,6 @@ public:
|
||||
nsEventStatus* aEventStatus) override;
|
||||
|
||||
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) override;
|
||||
|
||||
void PaintFocus(DrawTarget& aDrawTarget, nsPoint aPt);
|
||||
|
||||
@@ -153,7 +153,6 @@ nsDisplayFieldSetBorderBackground::ComputeInvalidationRegion(nsDisplayListBuilde
|
||||
|
||||
void
|
||||
nsFieldSetFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) {
|
||||
// Paint our background and border in a special way.
|
||||
// REVIEW: We don't really need to check frame emptiness here; if it's empty,
|
||||
@@ -180,7 +179,7 @@ nsFieldSetFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
}
|
||||
|
||||
if (GetPrevInFlow()) {
|
||||
DisplayOverflowContainers(aBuilder, aDirtyRect, aLists);
|
||||
DisplayOverflowContainers(aBuilder, aLists);
|
||||
}
|
||||
|
||||
nsDisplayListCollection contentDisplayItems;
|
||||
@@ -191,13 +190,13 @@ nsFieldSetFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
// legend. However, we want the inner frame's display items to be
|
||||
// after the legend's display items in z-order, so we need to save them
|
||||
// and append them later.
|
||||
BuildDisplayListForChild(aBuilder, inner, aDirtyRect, contentDisplayItems);
|
||||
BuildDisplayListForChild(aBuilder, inner, contentDisplayItems);
|
||||
}
|
||||
if (nsIFrame* legend = GetLegend()) {
|
||||
// The legend's background goes on our BlockBorderBackgrounds list because
|
||||
// it's a block child.
|
||||
nsDisplayListSet set(aLists, aLists.BlockBorderBackgrounds());
|
||||
BuildDisplayListForChild(aBuilder, legend, aDirtyRect, set);
|
||||
BuildDisplayListForChild(aBuilder, legend, set);
|
||||
}
|
||||
// Put the inner frame's display items on the master list. Note that this
|
||||
// moves its border/background display items to our BorderBackground() list,
|
||||
|
||||
@@ -53,7 +53,6 @@ public:
|
||||
nscoord* aBaseline) const override;
|
||||
|
||||
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) override;
|
||||
|
||||
DrawResult PaintBorder(nsDisplayListBuilder* aBuilder,
|
||||
|
||||
@@ -485,10 +485,9 @@ nsFileControlFrame::SetFormProperty(nsIAtom* aName,
|
||||
|
||||
void
|
||||
nsFileControlFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists)
|
||||
{
|
||||
BuildDisplayListForInline(aBuilder, aDirtyRect, aLists);
|
||||
BuildDisplayListForInline(aBuilder, aLists);
|
||||
}
|
||||
|
||||
#ifdef ACCESSIBILITY
|
||||
|
||||
@@ -33,7 +33,6 @@ public:
|
||||
nsIFrame* aPrevInFlow) override;
|
||||
|
||||
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) override;
|
||||
|
||||
NS_DECL_QUERYFRAME
|
||||
|
||||
@@ -40,7 +40,6 @@ public:
|
||||
|
||||
// nsIFrame replacements
|
||||
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) override {
|
||||
DO_GLOBAL_REFLOW_COUNT_DSP("nsFormControlFrame");
|
||||
DisplayBorderBackgroundOutline(aBuilder, aLists);
|
||||
|
||||
@@ -107,10 +107,9 @@ nsGfxCheckboxControlFrame::AccessibleType()
|
||||
//------------------------------------------------------------
|
||||
void
|
||||
nsGfxCheckboxControlFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists)
|
||||
{
|
||||
nsFormControlFrame::BuildDisplayList(aBuilder, aDirtyRect, aLists);
|
||||
nsFormControlFrame::BuildDisplayList(aBuilder, aLists);
|
||||
|
||||
// Get current checked state through content model.
|
||||
if ((!IsChecked() && !IsIndeterminate()) || !IsVisibleForPainting(aBuilder))
|
||||
|
||||
@@ -23,7 +23,6 @@ public:
|
||||
#endif
|
||||
|
||||
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) override;
|
||||
|
||||
#ifdef ACCESSIBILITY
|
||||
|
||||
@@ -70,10 +70,9 @@ PaintCheckedRadioButton(nsIFrame* aFrame,
|
||||
|
||||
void
|
||||
nsGfxRadioControlFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists)
|
||||
{
|
||||
nsFormControlFrame::BuildDisplayList(aBuilder, aDirtyRect, aLists);
|
||||
nsFormControlFrame::BuildDisplayList(aBuilder, aLists);
|
||||
|
||||
if (!IsVisibleForPainting(aBuilder))
|
||||
return;
|
||||
|
||||
@@ -25,7 +25,6 @@ public:
|
||||
#endif
|
||||
|
||||
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) override;
|
||||
};
|
||||
|
||||
|
||||
@@ -98,7 +98,6 @@ nsHTMLButtonControlFrame::ShouldClipPaintingToBorderBox()
|
||||
|
||||
void
|
||||
nsHTMLButtonControlFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists)
|
||||
{
|
||||
// Clip to our border area for event hit testing.
|
||||
@@ -132,7 +131,7 @@ nsHTMLButtonControlFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
clipState.ClipContainingBlockDescendants(rect, hasRadii ? radii : nullptr);
|
||||
}
|
||||
|
||||
BuildDisplayListForChild(aBuilder, mFrames.FirstChild(), aDirtyRect, set,
|
||||
BuildDisplayListForChild(aBuilder, mFrames.FirstChild(), set,
|
||||
DISPLAY_CHILD_FORCE_PSEUDO_STACKING_CONTEXT);
|
||||
// That should put the display items in set.Content()
|
||||
}
|
||||
|
||||
@@ -27,7 +27,6 @@ public:
|
||||
NS_DECL_FRAMEARENA_HELPERS
|
||||
|
||||
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) override;
|
||||
|
||||
virtual nscoord GetMinISize(nsRenderingContext *aRenderingContext) override;
|
||||
|
||||
@@ -155,7 +155,6 @@ nsListControlFrame::DestroyFrom(nsIFrame* aDestructRoot)
|
||||
|
||||
void
|
||||
nsListControlFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists)
|
||||
{
|
||||
// We allow visibility:hidden <select>s to contain visible options.
|
||||
@@ -180,7 +179,7 @@ nsListControlFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
mLastDropdownBackstopColor));
|
||||
}
|
||||
|
||||
nsHTMLScrollFrame::BuildDisplayList(aBuilder, aDirtyRect, aLists);
|
||||
nsHTMLScrollFrame::BuildDisplayList(aBuilder, aLists);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -81,7 +81,6 @@ public:
|
||||
virtual void DestroyFrom(nsIFrame* aDestructRoot) override;
|
||||
|
||||
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) override;
|
||||
|
||||
virtual nsContainerFrame* GetContentInsertionFrame() override;
|
||||
|
||||
@@ -98,10 +98,9 @@ NS_QUERYFRAME_TAIL_INHERITING(nsContainerFrame)
|
||||
|
||||
void
|
||||
nsProgressFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists)
|
||||
{
|
||||
BuildDisplayListForInline(aBuilder, aDirtyRect, aLists);
|
||||
BuildDisplayListForInline(aBuilder, aLists);
|
||||
}
|
||||
|
||||
void
|
||||
|
||||
@@ -32,7 +32,6 @@ public:
|
||||
virtual void DestroyFrom(nsIFrame* aDestructRoot) override;
|
||||
|
||||
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) override;
|
||||
|
||||
virtual void Reflow(nsPresContext* aCX,
|
||||
|
||||
@@ -255,7 +255,6 @@ nsDisplayRangeFocusRing::Paint(nsDisplayListBuilder* aBuilder,
|
||||
|
||||
void
|
||||
nsRangeFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists)
|
||||
{
|
||||
if (IsThemed()) {
|
||||
@@ -270,10 +269,10 @@ nsRangeFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
nsIFrame* thumb = mThumbDiv->GetPrimaryFrame();
|
||||
if (thumb) {
|
||||
nsDisplayListSet set(aLists, aLists.Content());
|
||||
BuildDisplayListForChild(aBuilder, thumb, aDirtyRect, set, DISPLAY_CHILD_INLINE);
|
||||
BuildDisplayListForChild(aBuilder, thumb, set, DISPLAY_CHILD_INLINE);
|
||||
}
|
||||
} else {
|
||||
BuildDisplayListForInline(aBuilder, aDirtyRect, aLists);
|
||||
BuildDisplayListForInline(aBuilder, aLists);
|
||||
}
|
||||
|
||||
// Draw a focus outline if appropriate:
|
||||
|
||||
@@ -43,7 +43,6 @@ public:
|
||||
virtual void DestroyFrom(nsIFrame* aDestructRoot) override;
|
||||
|
||||
void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) override;
|
||||
|
||||
virtual void Reflow(nsPresContext* aPresContext,
|
||||
|
||||
@@ -126,16 +126,15 @@ public:
|
||||
|
||||
void
|
||||
nsSelectsAreaFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists)
|
||||
{
|
||||
if (!aBuilder->IsForEventDelivery()) {
|
||||
BuildDisplayListInternal(aBuilder, aDirtyRect, aLists);
|
||||
BuildDisplayListInternal(aBuilder, aLists);
|
||||
return;
|
||||
}
|
||||
|
||||
nsDisplayListCollection set;
|
||||
BuildDisplayListInternal(aBuilder, aDirtyRect, set);
|
||||
BuildDisplayListInternal(aBuilder, set);
|
||||
|
||||
nsOptionEventGrabberWrapper wrapper;
|
||||
wrapper.WrapLists(aBuilder, this, set, aLists);
|
||||
@@ -143,10 +142,9 @@ nsSelectsAreaFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
|
||||
void
|
||||
nsSelectsAreaFrame::BuildDisplayListInternal(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists)
|
||||
{
|
||||
nsBlockFrame::BuildDisplayList(aBuilder, aDirtyRect, aLists);
|
||||
nsBlockFrame::BuildDisplayList(aBuilder, aLists);
|
||||
|
||||
nsListControlFrame* listFrame = GetEnclosingListFrame(this);
|
||||
if (listFrame && listFrame->IsFocused()) {
|
||||
|
||||
@@ -18,11 +18,9 @@ public:
|
||||
nsFrameState aFlags);
|
||||
|
||||
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) override;
|
||||
|
||||
void BuildDisplayListInternal(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists);
|
||||
|
||||
virtual void Reflow(nsPresContext* aCX,
|
||||
|
||||
@@ -1419,7 +1419,6 @@ nsTextControlFrame::PeekOffset(nsPeekOffsetStruct *aPos)
|
||||
|
||||
void
|
||||
nsTextControlFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists)
|
||||
{
|
||||
/*
|
||||
@@ -1447,7 +1446,7 @@ nsTextControlFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
// placeholder has to be visible.
|
||||
if (kid->GetContent() != txtCtrl->GetPlaceholderNode() ||
|
||||
txtCtrl->GetPlaceholderVisibility()) {
|
||||
BuildDisplayListForChild(aBuilder, kid, aDirtyRect, set, 0);
|
||||
BuildDisplayListForChild(aBuilder, kid, set, 0);
|
||||
}
|
||||
kid = kid->GetNextSibling();
|
||||
}
|
||||
|
||||
@@ -127,7 +127,6 @@ public:
|
||||
nsFrameList& aChildList) override;
|
||||
|
||||
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) override;
|
||||
|
||||
virtual mozilla::dom::Element*
|
||||
|
||||
@@ -39,7 +39,6 @@ nsBackdropFrame::GetParentStyleContext(nsIFrame** aProviderFrame) const
|
||||
|
||||
/* virtual */ void
|
||||
nsBackdropFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists)
|
||||
{
|
||||
DO_GLOBAL_REFLOW_COUNT_DSP("nsBackdropFrame");
|
||||
|
||||
@@ -27,7 +27,6 @@ public:
|
||||
virtual nsStyleContext*
|
||||
GetParentStyleContext(nsIFrame** aProviderFrame) const override;
|
||||
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) override;
|
||||
virtual mozilla::LogicalSize
|
||||
ComputeAutoSize(nsRenderingContext* aRenderingContext,
|
||||
|
||||
@@ -6525,13 +6525,13 @@ static void DebugOutputDrawLine(int32_t aDepth, nsLineBox* aLine, bool aDrawn) {
|
||||
|
||||
static void
|
||||
DisplayLine(nsDisplayListBuilder* aBuilder, const nsRect& aLineArea,
|
||||
const nsRect& aDirtyRect, nsBlockFrame::LineIterator& aLine,
|
||||
nsBlockFrame::LineIterator& aLine,
|
||||
int32_t aDepth, int32_t& aDrawnLines, const nsDisplayListSet& aLists,
|
||||
nsBlockFrame* aFrame, TextOverflow* aTextOverflow) {
|
||||
// If the line's combined area (which includes child frames that
|
||||
// stick outside of the line's bounding box or our bounding box)
|
||||
// intersects the dirty rect then paint the line.
|
||||
bool intersect = aLineArea.Intersects(aDirtyRect);
|
||||
bool intersect = aLineArea.Intersects(aBuilder->GetDirtyRect());
|
||||
#ifdef DEBUG
|
||||
if (nsBlockFrame::gLamePaintMetrics) {
|
||||
aDrawnLines++;
|
||||
@@ -6566,8 +6566,7 @@ DisplayLine(nsDisplayListBuilder* aBuilder, const nsRect& aLineArea,
|
||||
nsIFrame* kid = aLine->mFirstChild;
|
||||
int32_t n = aLine->GetChildCount();
|
||||
while (--n >= 0) {
|
||||
aFrame->BuildDisplayListForChild(aBuilder, kid, aDirtyRect,
|
||||
childLists, flags);
|
||||
aFrame->BuildDisplayListForChild(aBuilder, kid, childLists, flags);
|
||||
kid = kid->GetNextSibling();
|
||||
}
|
||||
|
||||
@@ -6580,13 +6579,13 @@ DisplayLine(nsDisplayListBuilder* aBuilder, const nsRect& aLineArea,
|
||||
|
||||
void
|
||||
nsBlockFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists)
|
||||
{
|
||||
int32_t drawnLines; // Will only be used if set (gLamePaintMetrics).
|
||||
int32_t depth = 0;
|
||||
#ifdef DEBUG
|
||||
if (gNoisyDamageRepair) {
|
||||
nsRect dirty = aBuilder->GetDirtyRect();
|
||||
depth = GetDepth();
|
||||
nsRect ca;
|
||||
::ComputeVisualOverflowArea(mLines, mRect.width, mRect.height, ca);
|
||||
@@ -6594,7 +6593,7 @@ nsBlockFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
ListTag(stdout);
|
||||
printf(": bounds=%d,%d,%d,%d dirty(absolute)=%d,%d,%d,%d ca=%d,%d,%d,%d\n",
|
||||
mRect.x, mRect.y, mRect.width, mRect.height,
|
||||
aDirtyRect.x, aDirtyRect.y, aDirtyRect.width, aDirtyRect.height,
|
||||
dirty.x, dirty.y, dirty.width, dirty.height,
|
||||
ca.x, ca.y, ca.width, ca.height);
|
||||
}
|
||||
PRTime start = 0; // Initialize these variables to silence the compiler.
|
||||
@@ -6607,14 +6606,14 @@ nsBlockFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
DisplayBorderBackgroundOutline(aBuilder, aLists);
|
||||
|
||||
if (GetPrevInFlow()) {
|
||||
DisplayOverflowContainers(aBuilder, aDirtyRect, aLists);
|
||||
DisplayOverflowContainers(aBuilder, aLists);
|
||||
for (nsIFrame* f : mFloats) {
|
||||
if (f->GetStateBits() & NS_FRAME_IS_PUSHED_FLOAT)
|
||||
BuildDisplayListForChild(aBuilder, f, aDirtyRect, aLists);
|
||||
BuildDisplayListForChild(aBuilder, f, aLists);
|
||||
}
|
||||
}
|
||||
|
||||
aBuilder->MarkFramesForDisplayList(this, mFloats, aDirtyRect);
|
||||
aBuilder->MarkFramesForDisplayList(this, mFloats);
|
||||
|
||||
// Prepare for text-overflow processing.
|
||||
UniquePtr<TextOverflow> textOverflow(
|
||||
@@ -6631,7 +6630,7 @@ nsBlockFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
// approximate it by checking it on |this|; if it's true for any
|
||||
// frame in our child list, it's also true for |this|.
|
||||
nsLineBox* cursor = aBuilder->ShouldDescendIntoFrame(this) ?
|
||||
nullptr : GetFirstLineContaining(aDirtyRect.y);
|
||||
nullptr : GetFirstLineContaining(aBuilder->GetDirtyRect().y);
|
||||
LineIterator line_end = LinesEnd();
|
||||
|
||||
if (cursor) {
|
||||
@@ -6642,10 +6641,10 @@ nsBlockFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
if (!lineArea.IsEmpty()) {
|
||||
// Because we have a cursor, the combinedArea.ys are non-decreasing.
|
||||
// Once we've passed aDirtyRect.YMost(), we can never see it again.
|
||||
if (lineArea.y >= aDirtyRect.YMost()) {
|
||||
if (lineArea.y >= aBuilder->GetDirtyRect().YMost()) {
|
||||
break;
|
||||
}
|
||||
DisplayLine(aBuilder, lineArea, aDirtyRect, line, depth, drawnLines,
|
||||
DisplayLine(aBuilder, lineArea, line, depth, drawnLines,
|
||||
linesDisplayListCollection, this, textOverflow.get());
|
||||
}
|
||||
}
|
||||
@@ -6658,7 +6657,7 @@ nsBlockFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
line != line_end;
|
||||
++line) {
|
||||
nsRect lineArea = line->GetVisualOverflowArea();
|
||||
DisplayLine(aBuilder, lineArea, aDirtyRect, line, depth, drawnLines,
|
||||
DisplayLine(aBuilder, lineArea, line, depth, drawnLines,
|
||||
linesDisplayListCollection, this, textOverflow.get());
|
||||
if (!lineArea.IsEmpty()) {
|
||||
if (lineArea.y < lastY
|
||||
@@ -6688,7 +6687,7 @@ nsBlockFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
if (HasOutsideBullet()) {
|
||||
// Display outside bullets manually
|
||||
nsIFrame* bullet = GetOutsideBullet();
|
||||
BuildDisplayListForChild(aBuilder, bullet, aDirtyRect, aLists);
|
||||
BuildDisplayListForChild(aBuilder, bullet, aLists);
|
||||
}
|
||||
|
||||
#ifdef DEBUG
|
||||
|
||||
@@ -139,7 +139,6 @@ public:
|
||||
virtual nsSplittableType GetSplittableType() const override;
|
||||
virtual bool IsFloatContainingBlock() const override;
|
||||
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) override;
|
||||
virtual nsIAtom* GetType() const override;
|
||||
virtual bool IsFrameOfType(uint32_t aFlags) const override
|
||||
|
||||
@@ -274,7 +274,6 @@ void nsDisplayBullet::Paint(nsDisplayListBuilder* aBuilder,
|
||||
|
||||
void
|
||||
nsBulletFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists)
|
||||
{
|
||||
if (!IsVisibleForPainting(aBuilder))
|
||||
|
||||
@@ -68,7 +68,6 @@ public:
|
||||
// nsIFrame
|
||||
virtual void DestroyFrom(nsIFrame* aDestructRoot) override;
|
||||
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) override;
|
||||
virtual nsIAtom* GetType() const override;
|
||||
virtual void DidSetStyleContext(nsStyleContext* aOldStyleContext) override;
|
||||
|
||||
@@ -410,11 +410,10 @@ public:
|
||||
|
||||
void
|
||||
nsCanvasFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists)
|
||||
{
|
||||
if (GetPrevInFlow()) {
|
||||
DisplayOverflowContainers(aBuilder, aDirtyRect, aLists);
|
||||
DisplayOverflowContainers(aBuilder, aLists);
|
||||
}
|
||||
|
||||
// Force a background to be shown. We may have a background propagated to us,
|
||||
@@ -488,7 +487,7 @@ nsCanvasFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
|
||||
for (nsIFrame* kid : PrincipalChildList()) {
|
||||
// Put our child into its own pseudo-stack.
|
||||
BuildDisplayListForChild(aBuilder, kid, aDirtyRect, aLists);
|
||||
BuildDisplayListForChild(aBuilder, kid, aLists);
|
||||
}
|
||||
|
||||
#ifdef DEBUG_CANVAS_FOCUS
|
||||
@@ -504,7 +503,7 @@ nsCanvasFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
docShell->GetHasFocus(&hasFocus);
|
||||
printf("%p - nsCanvasFrame::Paint R:%d,%d,%d,%d DR: %d,%d,%d,%d\n", this,
|
||||
mRect.x, mRect.y, mRect.width, mRect.height,
|
||||
aDirtyRect.x, aDirtyRect.y, aDirtyRect.width, aDirtyRect.height);
|
||||
dirty.x, dirty.y, dirty.width, dirty.height);
|
||||
}
|
||||
printf("%p - Focus: %s c: %p DoPaint:%s\n", docShell.get(), hasFocus?"Y":"N",
|
||||
focusContent.get(), mDoPaintFocus?"Y":"N");
|
||||
|
||||
@@ -107,7 +107,6 @@ public:
|
||||
NS_IMETHOD SetHasFocus(bool aHasFocus);
|
||||
|
||||
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) override;
|
||||
|
||||
void PaintFocus(mozilla::gfx::DrawTarget* aRenderingContext, nsPoint aPt);
|
||||
|
||||
@@ -1115,7 +1115,6 @@ nsColumnSetFrame::Reflow(nsPresContext* aPresContext,
|
||||
|
||||
void
|
||||
nsColumnSetFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists)
|
||||
{
|
||||
DisplayBorderBackgroundOutline(aBuilder, aLists);
|
||||
@@ -1128,7 +1127,7 @@ nsColumnSetFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
|
||||
// Our children won't have backgrounds so it doesn't matter where we put them.
|
||||
for (nsFrameList::Enumerator e(mFrames); !e.AtEnd(); e.Next()) {
|
||||
BuildDisplayListForChild(aBuilder, e.get(), aDirtyRect, aLists);
|
||||
BuildDisplayListForChild(aBuilder, e.get(), aLists);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -67,7 +67,6 @@ public:
|
||||
}
|
||||
|
||||
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) override;
|
||||
|
||||
virtual nsIAtom* GetType() const override;
|
||||
|
||||
@@ -331,17 +331,15 @@ nsContainerFrame::GetChildLists(nsTArray<ChildList>* aLists) const
|
||||
|
||||
void
|
||||
nsContainerFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists)
|
||||
{
|
||||
DisplayBorderBackgroundOutline(aBuilder, aLists);
|
||||
|
||||
BuildDisplayListForNonBlockChildren(aBuilder, aDirtyRect, aLists);
|
||||
BuildDisplayListForNonBlockChildren(aBuilder, aLists);
|
||||
}
|
||||
|
||||
void
|
||||
nsContainerFrame::BuildDisplayListForNonBlockChildren(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists,
|
||||
uint32_t aFlags)
|
||||
{
|
||||
@@ -350,7 +348,7 @@ nsContainerFrame::BuildDisplayListForNonBlockChildren(nsDisplayListBuilder* aB
|
||||
nsDisplayListSet set(aLists, aLists.Content());
|
||||
// The children should be in content order
|
||||
while (kid) {
|
||||
BuildDisplayListForChild(aBuilder, kid, aDirtyRect, set, aFlags);
|
||||
BuildDisplayListForChild(aBuilder, kid, set, aFlags);
|
||||
kid = kid->GetNextSibling();
|
||||
}
|
||||
}
|
||||
@@ -1340,13 +1338,12 @@ nsContainerFrame::ReflowOverflowContainerChildren(nsPresContext* aPres
|
||||
|
||||
void
|
||||
nsContainerFrame::DisplayOverflowContainers(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists)
|
||||
{
|
||||
nsFrameList* overflowconts = GetPropTableFrames(OverflowContainersProperty());
|
||||
if (overflowconts) {
|
||||
for (nsIFrame* frame : *overflowconts) {
|
||||
BuildDisplayListForChild(aBuilder, frame, aDirtyRect, aLists);
|
||||
BuildDisplayListForChild(aBuilder, frame, aLists);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -437,7 +437,6 @@ public:
|
||||
* Add overflow containers to the display list
|
||||
*/
|
||||
void DisplayOverflowContainers(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists);
|
||||
|
||||
/**
|
||||
@@ -450,7 +449,6 @@ public:
|
||||
* to emulate what nsContainerFrame::Paint did.
|
||||
*/
|
||||
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) override;
|
||||
|
||||
static void PlaceFrameView(nsIFrame* aFrame)
|
||||
@@ -576,7 +574,6 @@ protected:
|
||||
* display items) go into the Content() list.
|
||||
*/
|
||||
void BuildDisplayListForNonBlockChildren(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists,
|
||||
uint32_t aFlags = 0);
|
||||
|
||||
@@ -585,11 +582,9 @@ protected:
|
||||
* Intended as a convenience for derived classes.
|
||||
*/
|
||||
void BuildDisplayListForInline(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) {
|
||||
DisplayBorderBackgroundOutline(aBuilder, aLists);
|
||||
BuildDisplayListForNonBlockChildren(aBuilder, aDirtyRect, aLists,
|
||||
DISPLAY_CHILD_INLINE);
|
||||
BuildDisplayListForNonBlockChildren(aBuilder, aLists, DISPLAY_CHILD_INLINE);
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -50,10 +50,9 @@ nsFirstLetterFrame::GetType() const
|
||||
|
||||
void
|
||||
nsFirstLetterFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists)
|
||||
{
|
||||
BuildDisplayListForInline(aBuilder, aDirtyRect, aLists);
|
||||
BuildDisplayListForInline(aBuilder, aLists);
|
||||
}
|
||||
|
||||
void
|
||||
|
||||
@@ -20,7 +20,6 @@ public:
|
||||
explicit nsFirstLetterFrame(nsStyleContext* aContext) : nsContainerFrame(aContext) {}
|
||||
|
||||
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) override;
|
||||
|
||||
virtual void Init(nsIContent* aContent,
|
||||
|
||||
@@ -2433,7 +2433,6 @@ GetDisplayFlagsForFlexItem(nsIFrame* aFrame)
|
||||
|
||||
void
|
||||
nsFlexContainerFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists)
|
||||
{
|
||||
// XXXdholbert hacky temporary band-aid for bug 1059138: Trivially pass this
|
||||
@@ -2452,7 +2451,7 @@ nsFlexContainerFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
// the BlockBorderBackgrounds list.
|
||||
nsDisplayListSet childLists(aLists, aLists.BlockBorderBackgrounds());
|
||||
for (nsIFrame* childFrame : mFrames) {
|
||||
BuildDisplayListForChild(aBuilder, childFrame, aDirtyRect, childLists,
|
||||
BuildDisplayListForChild(aBuilder, childFrame, childLists,
|
||||
GetDisplayFlagsForFlexItem(childFrame));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -64,7 +64,6 @@ public:
|
||||
nsIFrame* aPrevInFlow) override;
|
||||
|
||||
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) override;
|
||||
|
||||
void MarkIntrinsicISizesDirty() override;
|
||||
|
||||
+32
-33
@@ -1813,7 +1813,7 @@ nsFrame::DisplayOutline(nsDisplayListBuilder* aBuilder,
|
||||
|
||||
void
|
||||
nsIFrame::DisplayCaret(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect, nsDisplayList* aList)
|
||||
nsDisplayList* aList)
|
||||
{
|
||||
if (!IsVisibleForPainting(aBuilder))
|
||||
return;
|
||||
@@ -2072,13 +2072,12 @@ ItemParticipatesIn3DContext(nsIFrame* aAncestor, nsDisplayItem* aItem)
|
||||
|
||||
static void
|
||||
WrapSeparatorTransform(nsDisplayListBuilder* aBuilder, nsIFrame* aFrame,
|
||||
nsRect& aDirtyRect,
|
||||
nsDisplayList* aSource, nsDisplayList* aTarget,
|
||||
int aIndex) {
|
||||
if (!aSource->IsEmpty()) {
|
||||
nsDisplayTransform *sepIdItem =
|
||||
new (aBuilder) nsDisplayTransform(aBuilder, aFrame, aSource,
|
||||
aDirtyRect, Matrix4x4(), aIndex);
|
||||
aBuilder->GetDirtyRect(), Matrix4x4(), aIndex);
|
||||
sepIdItem->SetNoExtendContext();
|
||||
aTarget->AppendToTop(sepIdItem);
|
||||
}
|
||||
@@ -2086,7 +2085,6 @@ WrapSeparatorTransform(nsDisplayListBuilder* aBuilder, nsIFrame* aFrame,
|
||||
|
||||
void
|
||||
nsIFrame::BuildDisplayListForStackingContext(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
nsDisplayList* aList) {
|
||||
if (GetStateBits() & NS_FRAME_TOO_DEEP_IN_FRAME_TREE)
|
||||
return;
|
||||
@@ -2130,13 +2128,13 @@ nsIFrame::BuildDisplayListForStackingContext(nsDisplayListBuilder* aBuilder,
|
||||
autoPreserves3DContext.emplace(aBuilder);
|
||||
// Save dirty rect on the builder to avoid being distorted for
|
||||
// multiple transforms along the chain.
|
||||
aBuilder->SetPreserves3DDirtyRect(aDirtyRect);
|
||||
aBuilder->SavePreserves3DRects();
|
||||
}
|
||||
|
||||
// For preserves3d, use the dirty rect already installed on the
|
||||
// builder, since aDirtyRect maybe distorted for transforms along
|
||||
// the chain.
|
||||
nsRect dirtyRect = aDirtyRect;
|
||||
nsRect dirtyRect = aBuilder->GetDirtyRect();
|
||||
|
||||
bool inTransform = aBuilder->IsInTransform();
|
||||
bool isTransformed = IsTransformed();
|
||||
@@ -2161,7 +2159,7 @@ nsIFrame::BuildDisplayListForStackingContext(nsDisplayListBuilder* aBuilder,
|
||||
// If we're in preserve-3d then grab the dirty rect that was given to the root
|
||||
// and transform using the combined transform.
|
||||
if (Combines3DTransformWithAncestors()) {
|
||||
dirtyRect = aBuilder->GetPreserves3DDirtyRect(this);
|
||||
dirtyRect = aBuilder->GetPreserves3DRects();
|
||||
}
|
||||
|
||||
nsRect untransformedDirtyRect;
|
||||
@@ -2281,7 +2279,7 @@ nsIFrame::BuildDisplayListForStackingContext(nsDisplayListBuilder* aBuilder,
|
||||
|
||||
Maybe<nsRect> clipPropClip = GetClipPropClipRect(disp, effects, GetSize());
|
||||
if (clipPropClip) {
|
||||
dirtyRect.IntersectRect(dirtyRect, *clipPropClip);
|
||||
aBuilder->IntersectDirtyRect(*clipPropClip);
|
||||
nestedClipState.ClipContentDescendants(
|
||||
*clipPropClip + aBuilder->ToReferenceFrame(this));
|
||||
}
|
||||
@@ -2294,7 +2292,7 @@ nsIFrame::BuildDisplayListForStackingContext(nsDisplayListBuilder* aBuilder,
|
||||
aBuilder->MarkPreserve3DFramesForDisplayList(this);
|
||||
}
|
||||
|
||||
MarkAbsoluteFramesForDisplayList(aBuilder, dirtyRect);
|
||||
MarkAbsoluteFramesForDisplayList(aBuilder);
|
||||
|
||||
nsDisplayLayerEventRegions* eventRegions = nullptr;
|
||||
if (aBuilder->IsBuildingLayerEventRegions()) {
|
||||
@@ -2303,7 +2301,7 @@ nsIFrame::BuildDisplayListForStackingContext(nsDisplayListBuilder* aBuilder,
|
||||
aBuilder->SetLayerEventRegions(eventRegions);
|
||||
}
|
||||
aBuilder->AdjustWindowDraggingRegion(this);
|
||||
BuildDisplayList(aBuilder, dirtyRect, set);
|
||||
BuildDisplayList(aBuilder, set);
|
||||
if (eventRegions) {
|
||||
// If the event regions item ended up empty, throw it away rather than
|
||||
// adding it to the display list.
|
||||
@@ -2409,7 +2407,7 @@ nsIFrame::BuildDisplayListForStackingContext(nsDisplayListBuilder* aBuilder,
|
||||
clipState.ExitStackingContextContents(&containerItemScrollClip);
|
||||
}
|
||||
// Revert to the post-filter dirty rect.
|
||||
buildingDisplayList.SetDirtyRect(dirtyRectOutsideSVGEffects);
|
||||
aBuilder->SetDirtyRect(dirtyRectOutsideSVGEffects);
|
||||
|
||||
// Skip all filter effects while generating glyph mask.
|
||||
if (usingFilter && !aBuilder->IsForGenerateGlyphMask()) {
|
||||
@@ -2474,8 +2472,7 @@ nsIFrame::BuildDisplayListForStackingContext(nsDisplayListBuilder* aBuilder,
|
||||
while (nsDisplayItem* item = resultList.RemoveBottom()) {
|
||||
if (ItemParticipatesIn3DContext(this, item) && !item->GetClip().HasClip()) {
|
||||
// The frame of this item participates the same 3D context.
|
||||
WrapSeparatorTransform(aBuilder, this, dirtyRect,
|
||||
&nonparticipants, &participants, index++);
|
||||
WrapSeparatorTransform(aBuilder, this, &nonparticipants, &participants, index++);
|
||||
participants.AppendToTop(item);
|
||||
} else {
|
||||
// The frame of the item doesn't participate the current
|
||||
@@ -2488,8 +2485,7 @@ nsIFrame::BuildDisplayListForStackingContext(nsDisplayListBuilder* aBuilder,
|
||||
nonparticipants.AppendToTop(item);
|
||||
}
|
||||
}
|
||||
WrapSeparatorTransform(aBuilder, this, dirtyRect,
|
||||
&nonparticipants, &participants, index++);
|
||||
WrapSeparatorTransform(aBuilder, this, &nonparticipants, &participants, index++);
|
||||
resultList.AppendToTop(&participants);
|
||||
}
|
||||
|
||||
@@ -2500,7 +2496,7 @@ nsIFrame::BuildDisplayListForStackingContext(nsDisplayListBuilder* aBuilder,
|
||||
}
|
||||
// Revert to the dirtyrect coming in from the parent, without our transform
|
||||
// taken into account.
|
||||
buildingDisplayList.SetDirtyRect(dirtyRectOutsideTransform);
|
||||
aBuilder->SetDirtyRect(dirtyRectOutsideTransform);
|
||||
// Revert to the outer reference frame and offset because all display
|
||||
// items we create from now on are outside the transform.
|
||||
nsPoint toOuterReferenceFrame;
|
||||
@@ -2604,7 +2600,6 @@ WrapInWrapList(nsDisplayListBuilder* aBuilder,
|
||||
void
|
||||
nsIFrame::BuildDisplayListForChild(nsDisplayListBuilder* aBuilder,
|
||||
nsIFrame* aChild,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists,
|
||||
uint32_t aFlags) {
|
||||
// If painting is restricted to just the background of the top level frame,
|
||||
@@ -2637,12 +2632,15 @@ nsIFrame::BuildDisplayListForChild(nsDisplayListBuilder* aBuilder,
|
||||
pseudoStackingContext = true;
|
||||
}
|
||||
|
||||
// dirty rect in child-relative coordinates
|
||||
nsRect dirty = aDirtyRect - child->GetOffsetTo(this);
|
||||
|
||||
nsIAtom* childType = child->GetType();
|
||||
nsDisplayListBuilder::OutOfFlowDisplayData* savedOutOfFlowData = nullptr;
|
||||
bool isPlaceholder = false;
|
||||
|
||||
// dirty rect in child-relative coordinates
|
||||
NS_ASSERTION(aBuilder->GetCurrentFrame() == this, "Wrong coord space!");
|
||||
nsPoint offset = child->GetOffsetTo(this);
|
||||
nsRect dirty = aBuilder->GetDirtyRect() - offset;
|
||||
|
||||
if (childType == nsGkAtoms::placeholderFrame) {
|
||||
isPlaceholder = true;
|
||||
nsPlaceholderFrame* placeholder = static_cast<nsPlaceholderFrame*>(child);
|
||||
@@ -2710,8 +2708,9 @@ nsIFrame::BuildDisplayListForChild(nsDisplayListBuilder* aBuilder,
|
||||
(shell->IgnoringViewportScrolling() && child == shell->GetRootScrollFrame());
|
||||
if (!keepDescending) {
|
||||
nsRect childDirty;
|
||||
if (!childDirty.IntersectRect(dirty, child->GetVisualOverflowRect()))
|
||||
if (!childDirty.IntersectRect(dirty, child->GetVisualOverflowRect())) {
|
||||
return;
|
||||
}
|
||||
// Usually we could set dirty to childDirty now but there's no
|
||||
// benefit, and it can be confusing. It can especially confuse
|
||||
// situations where we're going to ignore a scrollframe's clipping;
|
||||
@@ -2771,6 +2770,7 @@ nsIFrame::BuildDisplayListForChild(nsDisplayListBuilder* aBuilder,
|
||||
|
||||
nsDisplayListBuilder::AutoBuildingDisplayList
|
||||
buildingForChild(aBuilder, child, dirty, pseudoStackingContext);
|
||||
|
||||
DisplayListClipState::AutoClipMultiple clipState(aBuilder);
|
||||
CheckForApzAwareEventHandlers(aBuilder, child);
|
||||
|
||||
@@ -2783,7 +2783,7 @@ nsIFrame::BuildDisplayListForChild(nsDisplayListBuilder* aBuilder,
|
||||
savedOutOfFlowData->mContainingBlockScrollClip);
|
||||
} else if (GetStateBits() & NS_FRAME_FORCE_DISPLAY_LIST_DESCEND_INTO &&
|
||||
isPlaceholder) {
|
||||
NS_ASSERTION(dirty.IsEmpty(), "should have empty dirty rect");
|
||||
NS_ASSERTION(dirty.IsEmpty(), "should have empty visible rect");
|
||||
// Every item we build from now until we descent into an out of flow that
|
||||
// does have saved out of flow data should be invisible. This state gets
|
||||
// restored when AutoBuildingDisplayList gets out of scope.
|
||||
@@ -2819,18 +2819,18 @@ nsIFrame::BuildDisplayListForChild(nsDisplayListBuilder* aBuilder,
|
||||
// True stacking context.
|
||||
// For stacking contexts, BuildDisplayListForStackingContext handles
|
||||
// clipping and MarkAbsoluteFramesForDisplayList.
|
||||
child->BuildDisplayListForStackingContext(aBuilder, dirty, &list);
|
||||
aBuilder->DisplayCaret(child, dirty, &list);
|
||||
child->BuildDisplayListForStackingContext(aBuilder, &list);
|
||||
aBuilder->DisplayCaret(child, &list);
|
||||
} else {
|
||||
Maybe<nsRect> clipPropClip =
|
||||
child->GetClipPropClipRect(disp, effects, child->GetSize());
|
||||
if (clipPropClip) {
|
||||
dirty.IntersectRect(dirty, *clipPropClip);
|
||||
aBuilder->IntersectDirtyRect(*clipPropClip);
|
||||
clipState.ClipContentDescendants(
|
||||
*clipPropClip + aBuilder->ToReferenceFrame(child));
|
||||
}
|
||||
|
||||
child->MarkAbsoluteFramesForDisplayList(aBuilder, dirty);
|
||||
child->MarkAbsoluteFramesForDisplayList(aBuilder);
|
||||
|
||||
if (aBuilder->IsBuildingLayerEventRegions()) {
|
||||
// If this frame has a different animated geometry root than its parent,
|
||||
@@ -2862,8 +2862,8 @@ nsIFrame::BuildDisplayListForChild(nsDisplayListBuilder* aBuilder,
|
||||
// return early.
|
||||
|
||||
aBuilder->AdjustWindowDraggingRegion(child);
|
||||
child->BuildDisplayList(aBuilder, dirty, aLists);
|
||||
aBuilder->DisplayCaret(child, dirty, aLists.Content());
|
||||
child->BuildDisplayList(aBuilder, aLists);
|
||||
aBuilder->DisplayCaret(child, aLists.Content());
|
||||
#ifdef DEBUG
|
||||
DisplayDebugBorders(aBuilder, child, aLists);
|
||||
#endif
|
||||
@@ -2876,8 +2876,8 @@ nsIFrame::BuildDisplayListForChild(nsDisplayListBuilder* aBuilder,
|
||||
// z-index:non-auto
|
||||
nsDisplayListCollection pseudoStack;
|
||||
aBuilder->AdjustWindowDraggingRegion(child);
|
||||
child->BuildDisplayList(aBuilder, dirty, pseudoStack);
|
||||
aBuilder->DisplayCaret(child, dirty, pseudoStack.Content());
|
||||
child->BuildDisplayList(aBuilder, pseudoStack);
|
||||
aBuilder->DisplayCaret(child, pseudoStack.Content());
|
||||
|
||||
list.AppendToTop(pseudoStack.BorderBackground());
|
||||
list.AppendToTop(pseudoStack.BlockBorderBackgrounds());
|
||||
@@ -2927,11 +2927,10 @@ nsIFrame::BuildDisplayListForChild(nsDisplayListBuilder* aBuilder,
|
||||
}
|
||||
|
||||
void
|
||||
nsIFrame::MarkAbsoluteFramesForDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect)
|
||||
nsIFrame::MarkAbsoluteFramesForDisplayList(nsDisplayListBuilder* aBuilder)
|
||||
{
|
||||
if (IsAbsoluteContainer()) {
|
||||
aBuilder->MarkFramesForDisplayList(this, GetAbsoluteContainingBlock()->GetChildList(), aDirtyRect);
|
||||
aBuilder->MarkFramesForDisplayList(this, GetAbsoluteContainingBlock()->GetChildList());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -100,7 +100,6 @@ public:
|
||||
nsIFrame::Cursor& aCursor) override;
|
||||
|
||||
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) override;
|
||||
|
||||
virtual void Reflow(nsPresContext* aPresContext,
|
||||
@@ -149,7 +148,6 @@ public:
|
||||
#endif
|
||||
|
||||
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) override;
|
||||
|
||||
virtual void Reflow(nsPresContext* aPresContext,
|
||||
@@ -672,10 +670,9 @@ nsHTMLFramesetFrame::GetCursor(const nsPoint& aPoint,
|
||||
|
||||
void
|
||||
nsHTMLFramesetFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists)
|
||||
{
|
||||
BuildDisplayListForInline(aBuilder, aDirtyRect, aLists);
|
||||
BuildDisplayListForInline(aBuilder, aLists);
|
||||
|
||||
if (mDragger && aBuilder->IsForEventDelivery()) {
|
||||
aLists.Content()->AppendNewToTop(
|
||||
@@ -1429,7 +1426,6 @@ void nsDisplayFramesetBorder::Paint(nsDisplayListBuilder* aBuilder,
|
||||
|
||||
void
|
||||
nsHTMLFramesetBorderFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists)
|
||||
{
|
||||
aLists.Content()->AppendNewToTop(
|
||||
@@ -1640,7 +1636,6 @@ void nsDisplayFramesetBlank::Paint(nsDisplayListBuilder* aBuilder,
|
||||
|
||||
void
|
||||
nsHTMLFramesetBlankFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists)
|
||||
{
|
||||
aLists.Content()->AppendNewToTop(
|
||||
|
||||
@@ -97,7 +97,6 @@ public:
|
||||
nsIFrame::Cursor& aCursor) override;
|
||||
|
||||
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) override;
|
||||
|
||||
virtual void Reflow(nsPresContext* aPresContext,
|
||||
|
||||
@@ -3031,7 +3031,6 @@ struct HoveredStateComparator
|
||||
|
||||
void
|
||||
ScrollFrameHelper::AppendScrollPartsTo(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists,
|
||||
bool aCreateLayer,
|
||||
bool aPositioned)
|
||||
@@ -3093,23 +3092,25 @@ ScrollFrameHelper::AppendScrollPartsTo(nsDisplayListBuilder* aBuilder,
|
||||
// zoomable, and where the scrollbar sizes are bounded by the widget.
|
||||
nsRect dirty = mIsRoot && mOuter->PresContext()->IsRootContentDocument()
|
||||
? scrollParts[i]->GetVisualOverflowRectRelativeToParent()
|
||||
: aDirtyRect;
|
||||
nsDisplayListBuilder::AutoBuildingDisplayList
|
||||
buildingForChild(aBuilder, scrollParts[i],
|
||||
dirty + mOuter->GetOffsetTo(scrollParts[i]), true);
|
||||
: aBuilder->GetDirtyRect();
|
||||
|
||||
// Always create layers for overlay scrollbars so that we don't create a
|
||||
// giant layer covering the whole scrollport if both scrollbars are visible.
|
||||
bool isOverlayScrollbar = (flags != 0) && overlayScrollbars;
|
||||
bool createLayer = aCreateLayer || isOverlayScrollbar;
|
||||
|
||||
nsDisplayListBuilder::AutoCurrentScrollbarInfoSetter
|
||||
infoSetter(aBuilder, scrollTargetId, flags, createLayer);
|
||||
nsDisplayListCollection partList;
|
||||
mOuter->BuildDisplayListForChild(
|
||||
aBuilder, scrollParts[i], dirty, partList,
|
||||
nsIFrame::DISPLAY_CHILD_FORCE_STACKING_CONTEXT);
|
||||
{
|
||||
nsDisplayListBuilder::AutoBuildingDisplayList
|
||||
buildingForChild(aBuilder, mOuter,
|
||||
dirty, true);
|
||||
|
||||
nsDisplayListBuilder::AutoCurrentScrollbarInfoSetter
|
||||
infoSetter(aBuilder, scrollTargetId, flags, createLayer);
|
||||
mOuter->BuildDisplayListForChild(
|
||||
aBuilder, scrollParts[i], partList,
|
||||
nsIFrame::DISPLAY_CHILD_FORCE_STACKING_CONTEXT);
|
||||
}
|
||||
if (createLayer) {
|
||||
appendToTopFlags |= APPEND_OWN_LAYER;
|
||||
}
|
||||
@@ -3117,11 +3118,18 @@ ScrollFrameHelper::AppendScrollPartsTo(nsDisplayListBuilder* aBuilder,
|
||||
appendToTopFlags |= APPEND_POSITIONED;
|
||||
}
|
||||
|
||||
{
|
||||
nsDisplayListBuilder::AutoBuildingDisplayList
|
||||
buildingForChild(aBuilder, scrollParts[i],
|
||||
dirty + mOuter->GetOffsetTo(scrollParts[i]), true);
|
||||
nsDisplayListBuilder::AutoCurrentScrollbarInfoSetter
|
||||
infoSetter(aBuilder, scrollTargetId, flags, createLayer);
|
||||
// DISPLAY_CHILD_FORCE_STACKING_CONTEXT put everything into
|
||||
// partList.PositionedDescendants().
|
||||
::AppendToTop(aBuilder, aLists,
|
||||
partList.PositionedDescendants(), scrollParts[i],
|
||||
appendToTopFlags);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3246,7 +3254,6 @@ ClipListsExceptCaret(nsDisplayListCollection* aLists,
|
||||
|
||||
void
|
||||
ScrollFrameHelper::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists)
|
||||
{
|
||||
if (aBuilder->IsForFrameVisibility()) {
|
||||
@@ -3283,7 +3290,7 @@ ScrollFrameHelper::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
// had dirty rects saved for them by their parent frames calling
|
||||
// MarkOutOfFlowChildrenForDisplayList, so it's safe to restrict our
|
||||
// dirty rect here.
|
||||
nsRect dirtyRect = aDirtyRect;
|
||||
nsRect dirtyRect = aBuilder->GetDirtyRect();
|
||||
if (!ignoringThisScrollFrame) {
|
||||
dirtyRect = dirtyRect.Intersect(mScrollPort);
|
||||
}
|
||||
@@ -3325,20 +3332,20 @@ ScrollFrameHelper::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
|
||||
if (addScrollBars) {
|
||||
// Add classic scrollbars.
|
||||
AppendScrollPartsTo(aBuilder, aDirtyRect, aLists,
|
||||
createLayersForScrollbars, false);
|
||||
AppendScrollPartsTo(aBuilder, aLists, createLayersForScrollbars, false);
|
||||
}
|
||||
|
||||
nsDisplayListBuilder::AutoBuildingDisplayList
|
||||
building(aBuilder, mOuter, dirtyRect, aBuilder->IsAtRootOfPseudoStackingContext());
|
||||
|
||||
// Don't clip the scrolled child, and don't paint scrollbars/scrollcorner.
|
||||
// The scrolled frame shouldn't have its own background/border, so we
|
||||
// can just pass aLists directly.
|
||||
mOuter->BuildDisplayListForChild(aBuilder, mScrolledFrame,
|
||||
dirtyRect, aLists);
|
||||
mOuter->BuildDisplayListForChild(aBuilder, mScrolledFrame, aLists);
|
||||
|
||||
if (addScrollBars) {
|
||||
// Add overlay scrollbars.
|
||||
AppendScrollPartsTo(aBuilder, aDirtyRect, aLists,
|
||||
createLayersForScrollbars, true);
|
||||
AppendScrollPartsTo(aBuilder, aLists, createLayersForScrollbars, true);
|
||||
}
|
||||
|
||||
return;
|
||||
@@ -3376,8 +3383,7 @@ ScrollFrameHelper::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
// Note that this does not apply for overlay scrollbars; those are drawn
|
||||
// in the positioned-elements layer on top of everything else by the call
|
||||
// to AppendScrollPartsTo(..., true) further down.
|
||||
AppendScrollPartsTo(aBuilder, aDirtyRect, aLists,
|
||||
createLayersForScrollbars, false);
|
||||
AppendScrollPartsTo(aBuilder, aLists, createLayersForScrollbars, false);
|
||||
|
||||
const nsStyleDisplay* disp = mOuter->StyleDisplay();
|
||||
if (disp && (disp->mWillChangeBitField & NS_STYLE_WILL_CHANGE_SCROLL)) {
|
||||
@@ -3506,7 +3512,10 @@ ScrollFrameHelper::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
scrolledRectClipState.ClipContainingBlockDescendants(
|
||||
scrolledRectClip + aBuilder->ToReferenceFrame(mOuter));
|
||||
|
||||
mOuter->BuildDisplayListForChild(aBuilder, mScrolledFrame, dirtyRect, scrolledContent);
|
||||
nsDisplayListBuilder::AutoBuildingDisplayList
|
||||
building(aBuilder, mOuter, dirtyRect, aBuilder->IsAtRootOfPseudoStackingContext());
|
||||
|
||||
mOuter->BuildDisplayListForChild(aBuilder, mScrolledFrame, scrolledContent);
|
||||
}
|
||||
|
||||
if (contentBoxClipForNonCaretContent) {
|
||||
@@ -3593,8 +3602,8 @@ ScrollFrameHelper::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
}
|
||||
}
|
||||
// Now display overlay scrollbars and the resizer, if we have one.
|
||||
AppendScrollPartsTo(aBuilder, aDirtyRect, scrolledContent,
|
||||
createLayersForScrollbars, true);
|
||||
AppendScrollPartsTo(aBuilder, scrolledContent, createLayersForScrollbars, true);
|
||||
|
||||
scrolledContent.MoveTo(aLists);
|
||||
}
|
||||
|
||||
@@ -6175,3 +6184,4 @@ ScrollFrameHelper::UsesContainerScrolling() const
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
@@ -70,11 +70,9 @@ public:
|
||||
void Destroy();
|
||||
|
||||
void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists);
|
||||
|
||||
void AppendScrollPartsTo(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists,
|
||||
bool aCreateLayer,
|
||||
bool aPositioned);
|
||||
@@ -687,9 +685,8 @@ public:
|
||||
}
|
||||
|
||||
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) override {
|
||||
mHelper.BuildDisplayList(aBuilder, aDirtyRect, aLists);
|
||||
mHelper.BuildDisplayList(aBuilder, aLists);
|
||||
}
|
||||
|
||||
bool TryLayout(ScrollReflowInput* aState,
|
||||
@@ -1105,9 +1102,8 @@ public:
|
||||
bool aClipAllDescendants);
|
||||
|
||||
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) override {
|
||||
mHelper.BuildDisplayList(aBuilder, aDirtyRect, aLists);
|
||||
mHelper.BuildDisplayList(aBuilder, aLists);
|
||||
}
|
||||
|
||||
// XXXldb Is this actually used?
|
||||
|
||||
@@ -6643,12 +6643,11 @@ nsGridContainerFrame::GetType() const
|
||||
|
||||
void
|
||||
nsGridContainerFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists)
|
||||
{
|
||||
DisplayBorderBackgroundOutline(aBuilder, aLists);
|
||||
if (GetPrevInFlow()) {
|
||||
DisplayOverflowContainers(aBuilder, aDirtyRect, aLists);
|
||||
DisplayOverflowContainers(aBuilder, aLists);
|
||||
}
|
||||
|
||||
// Our children are all grid-level boxes, which behave the same as
|
||||
@@ -6662,8 +6661,7 @@ nsGridContainerFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
GridItemCSSOrderIterator::eIncludeAll, order);
|
||||
for (; !iter.AtEnd(); iter.Next()) {
|
||||
nsIFrame* child = *iter;
|
||||
BuildDisplayListForChild(aBuilder, child, aDirtyRect, aLists,
|
||||
::GetDisplayFlagsForGridItem(child));
|
||||
BuildDisplayListForChild(aBuilder, child, aLists, ::GetDisplayFlagsForGridItem(child));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -98,7 +98,6 @@ public:
|
||||
}
|
||||
|
||||
void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) override;
|
||||
|
||||
nscoord GetLogicalBaseline(mozilla::WritingMode aWM) const override
|
||||
|
||||
@@ -367,7 +367,6 @@ nsHTMLCanvasFrame::BuildLayer(nsDisplayListBuilder* aBuilder,
|
||||
|
||||
void
|
||||
nsHTMLCanvasFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists)
|
||||
{
|
||||
if (!IsVisibleForPainting(aBuilder))
|
||||
|
||||
@@ -45,7 +45,6 @@ public:
|
||||
nsIFrame* aPrevInFlow) override;
|
||||
|
||||
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) override;
|
||||
|
||||
already_AddRefed<Layer> BuildLayer(nsDisplayListBuilder* aBuilder,
|
||||
|
||||
@@ -1451,21 +1451,14 @@ public:
|
||||
* BuildDisplayListForChild.
|
||||
*
|
||||
* See nsDisplayList.h for more information about display lists.
|
||||
*
|
||||
* @param aDirtyRect content outside this rectangle can be ignored; the
|
||||
* rectangle is in frame coordinates
|
||||
*/
|
||||
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) {}
|
||||
/**
|
||||
* Displays the caret onto the given display list builder. The caret is
|
||||
* painted on top of the rest of the display list items.
|
||||
*
|
||||
* @param aDirtyRect is the dirty rectangle that we're repainting.
|
||||
*/
|
||||
void DisplayCaret(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
nsDisplayList* aList);
|
||||
|
||||
/**
|
||||
@@ -1499,11 +1492,8 @@ public:
|
||||
/**
|
||||
* Builds a display list for the content represented by this frame,
|
||||
* treating this frame as the root of a stacking context.
|
||||
* @param aDirtyRect content outside this rectangle can be ignored; the
|
||||
* rectangle is in frame coordinates
|
||||
*/
|
||||
void BuildDisplayListForStackingContext(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
nsDisplayList* aList);
|
||||
|
||||
enum {
|
||||
@@ -1522,7 +1512,6 @@ public:
|
||||
*/
|
||||
void BuildDisplayListForChild(nsDisplayListBuilder* aBuilder,
|
||||
nsIFrame* aChild,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists,
|
||||
uint32_t aFlags = 0);
|
||||
|
||||
@@ -3546,7 +3535,7 @@ private:
|
||||
nsIFrame* mNextSibling; // doubly-linked list of frames
|
||||
nsIFrame* mPrevSibling; // Do not touch outside SetNextSibling!
|
||||
|
||||
void MarkAbsoluteFramesForDisplayList(nsDisplayListBuilder* aBuilder, const nsRect& aDirtyRect);
|
||||
void MarkAbsoluteFramesForDisplayList(nsDisplayListBuilder* aBuilder);
|
||||
|
||||
static void DestroyPaintedPresShellList(nsTArray<nsWeakPtr>* list) {
|
||||
list->Clear();
|
||||
|
||||
@@ -1730,7 +1730,6 @@ nsImageFrame::PaintImage(nsRenderingContext& aRenderingContext, nsPoint aPt,
|
||||
|
||||
void
|
||||
nsImageFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists)
|
||||
{
|
||||
if (!IsVisibleForPainting(aBuilder))
|
||||
|
||||
@@ -82,7 +82,6 @@ public:
|
||||
nsContainerFrame* aParent,
|
||||
nsIFrame* aPrevInFlow) override;
|
||||
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) override;
|
||||
virtual nscoord GetMinISize(nsRenderingContext *aRenderingContext) override;
|
||||
virtual nscoord GetPrefISize(nsRenderingContext *aRenderingContext) override;
|
||||
|
||||
@@ -243,10 +243,9 @@ nsInlineFrame::StealFrame(nsIFrame* aChild)
|
||||
|
||||
void
|
||||
nsInlineFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists)
|
||||
{
|
||||
BuildDisplayListForInline(aBuilder, aDirtyRect, aLists);
|
||||
BuildDisplayListForInline(aBuilder, aLists);
|
||||
|
||||
// The sole purpose of this is to trigger display of the selection
|
||||
// window for Named Anchors, which don't have any children and
|
||||
|
||||
@@ -31,7 +31,6 @@ public:
|
||||
|
||||
// nsIFrame overrides
|
||||
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) override;
|
||||
|
||||
#ifdef ACCESSIBILITY
|
||||
|
||||
@@ -24,7 +24,6 @@ public:
|
||||
|
||||
// nsIFrame replacements
|
||||
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) override {
|
||||
DO_GLOBAL_REFLOW_COUNT_DSP("nsLeafFrame");
|
||||
DisplayBorderBackgroundOutline(aBuilder, aLists);
|
||||
|
||||
@@ -437,7 +437,7 @@ PruneDisplayListForExtraPage(nsDisplayListBuilder* aBuilder,
|
||||
static void
|
||||
BuildDisplayListForExtraPage(nsDisplayListBuilder* aBuilder,
|
||||
nsPageFrame* aPage, nsIFrame* aExtraPage,
|
||||
const nsRect& aDirtyRect, nsDisplayList* aList)
|
||||
nsDisplayList* aList)
|
||||
{
|
||||
// The only content in aExtraPage we care about is out-of-flow content whose
|
||||
// placeholders have occurred in aPage. If
|
||||
@@ -447,7 +447,7 @@ BuildDisplayListForExtraPage(nsDisplayListBuilder* aBuilder,
|
||||
return;
|
||||
}
|
||||
nsDisplayList list;
|
||||
aExtraPage->BuildDisplayListForStackingContext(aBuilder, aDirtyRect, &list);
|
||||
aExtraPage->BuildDisplayListForStackingContext(aBuilder, &list);
|
||||
PruneDisplayListForExtraPage(aBuilder, aPage, aExtraPage, &list);
|
||||
aList->AppendToTop(&list);
|
||||
}
|
||||
@@ -517,7 +517,6 @@ protected:
|
||||
//------------------------------------------------------------------------------
|
||||
void
|
||||
nsPageFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists)
|
||||
{
|
||||
nsDisplayListCollection set;
|
||||
@@ -558,7 +557,10 @@ nsPageFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
clipState.ClipContainingBlockDescendants(clipRect, nullptr);
|
||||
|
||||
nsRect dirtyRect = child->GetVisualOverflowRectRelativeToSelf();
|
||||
child->BuildDisplayListForStackingContext(aBuilder, dirtyRect, &content);
|
||||
nsDisplayListBuilder::AutoBuildingDisplayList
|
||||
buildingForChild(aBuilder, child, dirtyRect,
|
||||
aBuilder->IsAtRootOfPseudoStackingContext());
|
||||
child->BuildDisplayListForStackingContext(aBuilder, &content);
|
||||
|
||||
// We may need to paint out-of-flow frames whose placeholders are
|
||||
// on other pages. Add those pages to our display list. Note that
|
||||
@@ -569,8 +571,12 @@ nsPageFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
// following placeholders to their out-of-flows) end up on the list.
|
||||
nsIFrame* page = child;
|
||||
while ((page = GetNextPage(page)) != nullptr) {
|
||||
BuildDisplayListForExtraPage(aBuilder, this, page,
|
||||
dirtyRect + child->GetOffsetTo(page), &content);
|
||||
nsRect childDirty = dirtyRect + child->GetOffsetTo(page);
|
||||
|
||||
nsDisplayListBuilder::AutoBuildingDisplayList
|
||||
buildingForChild(aBuilder, page, childDirty,
|
||||
aBuilder->IsAtRootOfPseudoStackingContext());
|
||||
BuildDisplayListForExtraPage(aBuilder, this, page, &content);
|
||||
}
|
||||
|
||||
// Invoke AutoBuildingDisplayList to ensure that the correct dirtyRect
|
||||
|
||||
@@ -29,7 +29,6 @@ public:
|
||||
nsReflowStatus& aStatus) override;
|
||||
|
||||
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) override;
|
||||
|
||||
/**
|
||||
|
||||
@@ -239,7 +239,6 @@ PaintDebugPlaceholder(nsIFrame* aFrame, DrawTarget* aDrawTarget,
|
||||
|
||||
void
|
||||
nsPlaceholderFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists)
|
||||
{
|
||||
DO_GLOBAL_REFLOW_COUNT_DSP("nsPlaceholderFrame");
|
||||
|
||||
@@ -107,7 +107,6 @@ public:
|
||||
|
||||
#if defined(DEBUG) || (defined(MOZ_REFLOW_PERF_DSP) && defined(MOZ_REFLOW_PERF))
|
||||
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) override;
|
||||
#endif // DEBUG || (MOZ_REFLOW_PERF_DSP && MOZ_REFLOW_PERF)
|
||||
|
||||
|
||||
@@ -1182,7 +1182,6 @@ nsPluginFrame::IsTransparentMode() const
|
||||
|
||||
void
|
||||
nsPluginFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists)
|
||||
{
|
||||
// XXX why are we painting collapsed object frames?
|
||||
|
||||
@@ -81,7 +81,6 @@ public:
|
||||
const ReflowInput* aReflowInput,
|
||||
nsDidReflowStatus aStatus) override;
|
||||
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) override;
|
||||
|
||||
virtual nsresult HandleEvent(nsPresContext* aPresContext,
|
||||
|
||||
@@ -63,14 +63,13 @@ nsRubyTextFrame::GetFrameName(nsAString& aResult) const
|
||||
|
||||
/* virtual */ void
|
||||
nsRubyTextFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists)
|
||||
{
|
||||
if (IsAutoHidden()) {
|
||||
return;
|
||||
}
|
||||
|
||||
nsRubyContentFrame::BuildDisplayList(aBuilder, aDirtyRect, aLists);
|
||||
nsRubyContentFrame::BuildDisplayList(aBuilder, aLists);
|
||||
}
|
||||
|
||||
/* virtual */ void
|
||||
|
||||
@@ -34,7 +34,6 @@ public:
|
||||
#endif
|
||||
|
||||
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) override;
|
||||
|
||||
virtual void Reflow(nsPresContext* aPresContext,
|
||||
|
||||
@@ -808,7 +808,6 @@ ComputePageSequenceTransform(nsIFrame* aFrame, float aAppUnitsPerPixel)
|
||||
|
||||
void
|
||||
nsSimplePageSequenceFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists)
|
||||
{
|
||||
DisplayBorderBackgroundOutline(aBuilder, aLists);
|
||||
@@ -822,13 +821,16 @@ nsSimplePageSequenceFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
clipState.Clear();
|
||||
|
||||
nsIFrame* child = PrincipalChildList().FirstChild();
|
||||
nsRect dirty = aDirtyRect;
|
||||
nsRect dirty = aBuilder->GetDirtyRect();
|
||||
dirty.ScaleInverseRoundOut(PresContext()->GetPrintPreviewScale());
|
||||
|
||||
while (child) {
|
||||
if (child->GetVisualOverflowRectRelativeToParent().Intersects(dirty)) {
|
||||
child->BuildDisplayListForStackingContext(aBuilder,
|
||||
dirty - child->GetPosition(), &content);
|
||||
nsDisplayListBuilder::AutoBuildingDisplayList
|
||||
buildingForChild(aBuilder, child,
|
||||
dirty - child->GetPosition(),
|
||||
aBuilder->IsAtRootOfPseudoStackingContext());
|
||||
child->BuildDisplayListForStackingContext(aBuilder, &content);
|
||||
aBuilder->ResetMarkedFramesForDisplayList();
|
||||
}
|
||||
child = child->GetNextSibling();
|
||||
|
||||
@@ -69,7 +69,6 @@ public:
|
||||
nsReflowStatus& aStatus) override;
|
||||
|
||||
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) override;
|
||||
|
||||
// nsIPageSequenceFrame
|
||||
|
||||
@@ -327,7 +327,6 @@ WrapBackgroundColorInOwnLayer(nsDisplayListBuilder* aBuilder,
|
||||
|
||||
void
|
||||
nsSubDocumentFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists)
|
||||
{
|
||||
if (!IsVisibleForPainting(aBuilder))
|
||||
@@ -368,7 +367,7 @@ nsSubDocumentFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
}
|
||||
|
||||
if (rfp) {
|
||||
rfp->BuildDisplayList(aBuilder, this, aDirtyRect, aLists);
|
||||
rfp->BuildDisplayList(aBuilder, this, aLists);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -393,17 +392,18 @@ nsSubDocumentFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
nsIFrame* savedIgnoreScrollFrame = nullptr;
|
||||
if (subdocRootFrame) {
|
||||
// get the dirty rect relative to the root frame of the subdoc
|
||||
dirty = aDirtyRect + GetOffsetToCrossDoc(subdocRootFrame);
|
||||
dirty = aBuilder->GetDirtyRect() + GetOffsetToCrossDoc(subdocRootFrame);
|
||||
// and convert into the appunits of the subdoc
|
||||
dirty = dirty.ScaleToOtherAppUnitsRoundOut(parentAPD, subdocAPD);
|
||||
|
||||
if (nsIFrame* rootScrollFrame = presShell->GetRootScrollFrame()) {
|
||||
nsIScrollableFrame* rootScrollableFrame = presShell->GetRootScrollFrameAsScrollable();
|
||||
MOZ_ASSERT(rootScrollableFrame);
|
||||
// Use a copy, so the dirty rect doesn't get modified to the display port.
|
||||
nsRect copy = dirty;
|
||||
// Use a copy, so the rects don't get modified.
|
||||
nsRect copyOfDirty = dirty;
|
||||
haveDisplayPort = rootScrollableFrame->DecideScrollableLayer(aBuilder,
|
||||
©, /* aAllowCreateDisplayPort = */ true);
|
||||
©OfDirty,
|
||||
/* aAllowCreateDisplayPort = */ true);
|
||||
if (!gfxPrefs::LayoutUseContainersForRootFrames()) {
|
||||
haveDisplayPort = false;
|
||||
}
|
||||
@@ -417,7 +417,7 @@ nsSubDocumentFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
|
||||
aBuilder->EnterPresShell(subdocRootFrame, pointerEventsNone);
|
||||
} else {
|
||||
dirty = aDirtyRect;
|
||||
dirty = aBuilder->GetDirtyRect();
|
||||
}
|
||||
|
||||
DisplayListClipState::AutoSaveRestore clipState(aBuilder);
|
||||
@@ -456,6 +456,13 @@ nsSubDocumentFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
nestedClipState.EnterStackingContextContents(true);
|
||||
}
|
||||
|
||||
// Invoke AutoBuildingDisplayList to ensure that the correct dirty rect
|
||||
// is used to compute the visible rect if AddCanvasBackgroundColorItem
|
||||
// creates a display item.
|
||||
nsIFrame* frame = subdocRootFrame ? subdocRootFrame : this;
|
||||
nsDisplayListBuilder::AutoBuildingDisplayList
|
||||
building(aBuilder, frame, dirty, true);
|
||||
|
||||
if (subdocRootFrame) {
|
||||
nsIFrame* rootScrollFrame = presShell->GetRootScrollFrame();
|
||||
nsDisplayListBuilder::AutoCurrentScrollParentIdSetter idSetter(
|
||||
@@ -466,7 +473,7 @@ nsSubDocumentFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
|
||||
aBuilder->SetAncestorHasApzAwareEventHandler(false);
|
||||
subdocRootFrame->
|
||||
BuildDisplayListForStackingContext(aBuilder, dirty, &childItems);
|
||||
BuildDisplayListForStackingContext(aBuilder, &childItems);
|
||||
}
|
||||
|
||||
if (!aBuilder->IsForEventDelivery()) {
|
||||
@@ -485,15 +492,8 @@ nsSubDocumentFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
// painted on the page itself.
|
||||
if (nsLayoutUtils::NeedsPrintPreviewBackground(presContext)) {
|
||||
presShell->AddPrintPreviewBackgroundItem(
|
||||
*aBuilder, childItems, subdocRootFrame ? subdocRootFrame : this,
|
||||
bounds);
|
||||
*aBuilder, childItems, frame, bounds);
|
||||
} else {
|
||||
// Invoke AutoBuildingDisplayList to ensure that the correct dirty rect
|
||||
// is used to compute the visible rect if AddCanvasBackgroundColorItem
|
||||
// creates a display item.
|
||||
nsIFrame* frame = subdocRootFrame ? subdocRootFrame : this;
|
||||
nsDisplayListBuilder::AutoBuildingDisplayList
|
||||
building(aBuilder, frame, dirty, true);
|
||||
// Add the canvas background color to the bottom of the list. This
|
||||
// happens after we've built the list so that AddCanvasBackgroundColorItem
|
||||
// can monkey with the contents if necessary.
|
||||
|
||||
@@ -79,7 +79,6 @@ public:
|
||||
nsReflowStatus& aStatus) override;
|
||||
|
||||
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) override;
|
||||
|
||||
virtual nsresult AttributeChanged(int32_t aNameSpaceID,
|
||||
|
||||
@@ -4997,7 +4997,6 @@ nsDisplayText::Paint(nsDisplayListBuilder* aBuilder,
|
||||
|
||||
void
|
||||
nsTextFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists)
|
||||
{
|
||||
if (!IsVisibleForPainting(aBuilder))
|
||||
|
||||
@@ -65,7 +65,6 @@ public:
|
||||
|
||||
// nsIFrame
|
||||
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) override;
|
||||
|
||||
virtual void Init(nsIContent* aContent,
|
||||
|
||||
@@ -446,7 +446,6 @@ public:
|
||||
|
||||
void
|
||||
nsVideoFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists)
|
||||
{
|
||||
if (!IsVisibleForPainting(aBuilder))
|
||||
@@ -482,14 +481,15 @@ nsVideoFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
// but only want to draw mPosterImage conditionally. Others we
|
||||
// always add to the display list.
|
||||
for (nsIFrame* child : mFrames) {
|
||||
if (child->GetContent() != mPosterImage || shouldDisplayPoster) {
|
||||
child->BuildDisplayListForStackingContext(aBuilder,
|
||||
aDirtyRect - child->GetOffsetTo(this),
|
||||
aLists.Content());
|
||||
} else if (child->GetType() == nsGkAtoms::boxFrame) {
|
||||
child->BuildDisplayListForStackingContext(aBuilder,
|
||||
aDirtyRect - child->GetOffsetTo(this),
|
||||
aLists.Content());
|
||||
if (child->GetContent() != mPosterImage || shouldDisplayPoster ||
|
||||
child->GetType() == nsGkAtoms::boxFrame) {
|
||||
|
||||
nsDisplayListBuilder::AutoBuildingDisplayList
|
||||
buildingForChild(aBuilder, child,
|
||||
aBuilder->GetDirtyRect() - child->GetOffsetTo(this),
|
||||
aBuilder->IsAtRootOfPseudoStackingContext());
|
||||
|
||||
child->BuildDisplayListForStackingContext(aBuilder, aLists.Content());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -45,7 +45,6 @@ public:
|
||||
NS_DECL_FRAMEARENA_HELPERS
|
||||
|
||||
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) override;
|
||||
|
||||
virtual nsresult AttributeChanged(int32_t aNameSpaceID,
|
||||
|
||||
@@ -49,7 +49,6 @@ ViewportFrame::Init(nsIContent* aContent,
|
||||
|
||||
void
|
||||
ViewportFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists)
|
||||
{
|
||||
PROFILER_LABEL("ViewportFrame", "BuildDisplayList",
|
||||
@@ -59,7 +58,7 @@ ViewportFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
// make the kid's BorderBackground our own. This ensures that the canvas
|
||||
// frame's background becomes our own background and therefore appears
|
||||
// below negative z-index elements.
|
||||
BuildDisplayListForChild(aBuilder, kid, aDirtyRect, aLists);
|
||||
BuildDisplayListForChild(aBuilder, kid, aLists);
|
||||
}
|
||||
|
||||
nsDisplayList topLayerList;
|
||||
@@ -110,8 +109,12 @@ BuildDisplayListForTopLayerFrame(nsDisplayListBuilder* aBuilder,
|
||||
clipState.SetScrollClipForContainingBlockDescendants(
|
||||
aBuilder, savedOutOfFlowData->mContainingBlockScrollClip);
|
||||
}
|
||||
nsDisplayListBuilder::AutoBuildingDisplayList
|
||||
buildingForChild(aBuilder, aFrame, dirty,
|
||||
aBuilder->IsAtRootOfPseudoStackingContext());
|
||||
|
||||
nsDisplayList list;
|
||||
aFrame->BuildDisplayListForStackingContext(aBuilder, dirty, &list);
|
||||
aFrame->BuildDisplayListForStackingContext(aBuilder, &list);
|
||||
aList->AppendToTop(&list);
|
||||
}
|
||||
|
||||
|
||||
@@ -56,7 +56,6 @@ public:
|
||||
#endif
|
||||
|
||||
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) override;
|
||||
|
||||
void BuildDisplayListForTopLayer(nsDisplayListBuilder* aBuilder,
|
||||
|
||||
@@ -266,7 +266,6 @@ RenderFrameParent::GetLayerTreeId() const
|
||||
void
|
||||
RenderFrameParent::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
nsSubDocumentFrame* aFrame,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists)
|
||||
{
|
||||
// We're the subdoc for <browser remote="true"> and it has
|
||||
|
||||
@@ -64,7 +64,6 @@ public:
|
||||
|
||||
void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
nsSubDocumentFrame* aFrame,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists);
|
||||
|
||||
already_AddRefed<Layer> BuildLayer(nsDisplayListBuilder* aBuilder,
|
||||
|
||||
@@ -618,7 +618,6 @@ nsMathMLContainerFrame::PropagatePresentationDataFromChildAt(nsIFrame* aPa
|
||||
|
||||
void
|
||||
nsMathMLContainerFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists)
|
||||
{
|
||||
// report an error if something wrong was found in this frame
|
||||
@@ -633,8 +632,7 @@ nsMathMLContainerFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
|
||||
DisplayBorderBackgroundOutline(aBuilder, aLists);
|
||||
|
||||
BuildDisplayListForNonBlockChildren(aBuilder, aDirtyRect, aLists,
|
||||
DISPLAY_CHILD_INLINE);
|
||||
BuildDisplayListForNonBlockChildren(aBuilder, aLists, DISPLAY_CHILD_INLINE);
|
||||
|
||||
#if defined(DEBUG) && defined(SHOW_BOUNDING_BOX)
|
||||
// for visual debug
|
||||
|
||||
@@ -126,7 +126,6 @@ public:
|
||||
}
|
||||
|
||||
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) override;
|
||||
|
||||
virtual bool ComputeCustomOverflow(nsOverflowAreas& aOverflowAreas) override;
|
||||
|
||||
@@ -71,14 +71,13 @@ nsMathMLSelectedFrame::SetInitialChildList(ChildListID aListID,
|
||||
// Only paint the selected child...
|
||||
void
|
||||
nsMathMLSelectedFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists)
|
||||
{
|
||||
// Report an error if something wrong was found in this frame.
|
||||
// We can't call nsDisplayMathMLError from here,
|
||||
// so ask nsMathMLContainerFrame to do the work for us.
|
||||
if (NS_MATHML_HAS_ERROR(mPresentationData.flags)) {
|
||||
nsMathMLContainerFrame::BuildDisplayList(aBuilder, aDirtyRect, aLists);
|
||||
nsMathMLContainerFrame::BuildDisplayList(aBuilder, aLists);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -89,7 +88,7 @@ nsMathMLSelectedFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
// Put the child's background directly onto the content list
|
||||
nsDisplayListSet set(aLists, aLists.Content());
|
||||
// The children should be in content order
|
||||
BuildDisplayListForChild(aBuilder, childFrame, aDirtyRect, set);
|
||||
BuildDisplayListForChild(aBuilder, childFrame, set);
|
||||
}
|
||||
|
||||
#if defined(DEBUG) && defined(SHOW_BOUNDING_BOX)
|
||||
|
||||
@@ -26,7 +26,6 @@ public:
|
||||
ChildListChanged(int32_t aModType) override;
|
||||
|
||||
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) override;
|
||||
|
||||
virtual nsresult
|
||||
|
||||
@@ -201,12 +201,11 @@ nsMathMLmencloseFrame::TransmitAutomaticData()
|
||||
|
||||
void
|
||||
nsMathMLmencloseFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists)
|
||||
{
|
||||
/////////////
|
||||
// paint the menclosed content
|
||||
nsMathMLContainerFrame::BuildDisplayList(aBuilder, aDirtyRect, aLists);
|
||||
nsMathMLContainerFrame::BuildDisplayList(aBuilder, aLists);
|
||||
|
||||
if (NS_MATHML_HAS_ERROR(mPresentationData.flags))
|
||||
return;
|
||||
|
||||
@@ -70,7 +70,6 @@ public:
|
||||
GetAdditionalStyleContext(int32_t aIndex) const override;
|
||||
|
||||
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) override;
|
||||
|
||||
NS_IMETHOD
|
||||
|
||||
@@ -161,12 +161,11 @@ nsMathMLmfencedFrame::CreateFencesAndSeparators(nsPresContext* aPresContext)
|
||||
|
||||
void
|
||||
nsMathMLmfencedFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists)
|
||||
{
|
||||
/////////////
|
||||
// display the content
|
||||
nsMathMLContainerFrame::BuildDisplayList(aBuilder, aDirtyRect, aLists);
|
||||
nsMathMLContainerFrame::BuildDisplayList(aBuilder, aLists);
|
||||
|
||||
////////////
|
||||
// display fences and separators
|
||||
|
||||
@@ -41,7 +41,6 @@ public:
|
||||
nsReflowStatus& aStatus) override;
|
||||
|
||||
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) override;
|
||||
|
||||
virtual void
|
||||
|
||||
@@ -149,12 +149,11 @@ nsMathMLmfracFrame::CalcLineThickness(nsPresContext* aPresContext,
|
||||
|
||||
void
|
||||
nsMathMLmfracFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists)
|
||||
{
|
||||
/////////////
|
||||
// paint the numerator and denominator
|
||||
nsMathMLContainerFrame::BuildDisplayList(aBuilder, aDirtyRect, aLists);
|
||||
nsMathMLContainerFrame::BuildDisplayList(aBuilder, aLists);
|
||||
|
||||
/////////////
|
||||
// paint the fraction line
|
||||
|
||||
@@ -67,7 +67,6 @@ public:
|
||||
ReflowOutput& aDesiredSize) override;
|
||||
|
||||
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) override;
|
||||
|
||||
virtual nsresult
|
||||
|
||||
@@ -78,14 +78,13 @@ nsMathMLmoFrame::UseMathMLChar()
|
||||
|
||||
void
|
||||
nsMathMLmoFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists)
|
||||
{
|
||||
bool useMathMLChar = UseMathMLChar();
|
||||
|
||||
if (!useMathMLChar) {
|
||||
// let the base class do everything
|
||||
nsMathMLTokenFrame::BuildDisplayList(aBuilder, aDirtyRect, aLists);
|
||||
nsMathMLTokenFrame::BuildDisplayList(aBuilder, aLists);
|
||||
} else {
|
||||
DisplayBorderBackgroundOutline(aBuilder, aLists);
|
||||
|
||||
|
||||
@@ -29,7 +29,6 @@ public:
|
||||
GetAdditionalStyleContext(int32_t aIndex) const override;
|
||||
|
||||
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) override;
|
||||
|
||||
NS_IMETHOD
|
||||
|
||||
@@ -77,12 +77,11 @@ nsMathMLmrootFrame::TransmitAutomaticData()
|
||||
|
||||
void
|
||||
nsMathMLmrootFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists)
|
||||
{
|
||||
/////////////
|
||||
// paint the content we are square-rooting
|
||||
nsMathMLContainerFrame::BuildDisplayList(aBuilder, aDirtyRect, aLists);
|
||||
nsMathMLContainerFrame::BuildDisplayList(aBuilder, aLists);
|
||||
|
||||
/////////////
|
||||
// paint the sqrt symbol
|
||||
|
||||
@@ -51,7 +51,6 @@ public:
|
||||
ReflowOutput& aDesiredSize) override;
|
||||
|
||||
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) override;
|
||||
|
||||
uint8_t
|
||||
|
||||
@@ -25,7 +25,6 @@ public:
|
||||
NS_DECL_FRAMEARENA_HELPERS
|
||||
|
||||
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) override {}
|
||||
|
||||
virtual bool IsFrameOfType(uint32_t aFlags) const override
|
||||
|
||||
@@ -3162,7 +3162,6 @@ SVGTextFrame::Init(nsIContent* aContent,
|
||||
|
||||
void
|
||||
SVGTextFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists)
|
||||
{
|
||||
if (NS_SUBTREE_DIRTY(this)) {
|
||||
|
||||
@@ -224,7 +224,6 @@ public:
|
||||
}
|
||||
|
||||
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) override;
|
||||
|
||||
/**
|
||||
|
||||
@@ -37,7 +37,6 @@ public:
|
||||
|
||||
// nsIFrame methods:
|
||||
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) override {}
|
||||
|
||||
// nsSVGClipPathFrame methods:
|
||||
|
||||
@@ -141,7 +141,6 @@ nsSVGDisplayContainerFrame::Init(nsIContent* aContent,
|
||||
|
||||
void
|
||||
nsSVGDisplayContainerFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists)
|
||||
{
|
||||
// mContent could be a XUL element so check for an SVG element before casting
|
||||
@@ -150,7 +149,7 @@ nsSVGDisplayContainerFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
return;
|
||||
}
|
||||
DisplayOutline(aBuilder, aLists);
|
||||
return BuildDisplayListForNonBlockChildren(aBuilder, aDirtyRect, aLists);
|
||||
return BuildDisplayListForNonBlockChildren(aBuilder, aLists);
|
||||
}
|
||||
|
||||
void
|
||||
|
||||
@@ -83,7 +83,6 @@ public:
|
||||
}
|
||||
|
||||
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) override {}
|
||||
|
||||
virtual bool ComputeCustomOverflow(nsOverflowAreas& aOverflowAreas) override;
|
||||
@@ -133,7 +132,6 @@ public:
|
||||
nsIFrame* aPrevInFlow) override;
|
||||
|
||||
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) override;
|
||||
|
||||
virtual bool IsSVGTransformed(Matrix *aOwnTransform = nullptr,
|
||||
|
||||
@@ -45,7 +45,6 @@ public:
|
||||
|
||||
// nsIFrame methods:
|
||||
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists) override {}
|
||||
|
||||
virtual nsresult AttributeChanged(int32_t aNameSpaceID,
|
||||
|
||||
@@ -163,14 +163,13 @@ nsSVGForeignObjectFrame::Reflow(nsPresContext* aPresContext,
|
||||
|
||||
void
|
||||
nsSVGForeignObjectFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
||||
const nsRect& aDirtyRect,
|
||||
const nsDisplayListSet& aLists)
|
||||
{
|
||||
if (!static_cast<const nsSVGElement*>(mContent)->HasValidDimensions()) {
|
||||
return;
|
||||
}
|
||||
DisplayOutline(aBuilder, aLists);
|
||||
BuildDisplayListForNonBlockChildren(aBuilder, aDirtyRect, aLists);
|
||||
BuildDisplayListForNonBlockChildren(aBuilder, aLists);
|
||||
}
|
||||
|
||||
bool
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user