mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-05 23:38:38 +09:00
Issue #1355 - Fix the nit, remove nsPoint offset in nsFrame.cpp and change PresShellState member order
This commit is contained in:
parent
9c783146b2
commit
e87c06beb3
3 changed files with 3 additions and 5 deletions
|
|
@ -882,8 +882,7 @@ void nsDisplayListBuilder::MarkOutOfFlowFrameForDisplay(nsIFrame* aDirtyFrame,
|
|||
}
|
||||
}
|
||||
|
||||
nsPoint offset = aFrame->GetOffsetTo(aDirtyFrame);
|
||||
nsRect dirty = dirtyRectRelativeToDirtyFrame - offset;
|
||||
nsRect dirty = dirtyRectRelativeToDirtyFrame - aFrame->GetOffsetTo(aDirtyFrame);
|
||||
nsRect overflowRect = aFrame->GetVisualOverflowRect();
|
||||
|
||||
if (aFrame->IsTransformed() &&
|
||||
|
|
|
|||
|
|
@ -1195,11 +1195,11 @@ private:
|
|||
nsRect mCaretRect;
|
||||
uint32_t mFirstFrameMarkedForDisplay;
|
||||
bool mIsBackgroundOnly;
|
||||
nsIFrame* mPresShellIgnoreScrollFrame;
|
||||
// This is a per-document flag turning off event handling for all content
|
||||
// in the document, and is set when we enter a subdocument for a pointer-
|
||||
// events:none frame.
|
||||
bool mInsidePointerEventsNoneDoc;
|
||||
nsIFrame* mPresShellIgnoreScrollFrame;
|
||||
};
|
||||
|
||||
PresShellState* CurrentPresShellState() {
|
||||
|
|
|
|||
|
|
@ -2707,8 +2707,7 @@ nsIFrame::BuildDisplayListForChild(nsDisplayListBuilder* aBuilder,
|
|||
|
||||
// dirty rect in child-relative coordinates
|
||||
NS_ASSERTION(aBuilder->GetCurrentFrame() == this, "Wrong coord space!");
|
||||
nsPoint offset = child->GetOffsetTo(this);
|
||||
nsRect dirty = aBuilder->GetDirtyRect() - offset;
|
||||
nsRect dirty = aBuilder->GetDirtyRect() - child->GetOffsetTo(this);
|
||||
|
||||
if (childType == nsGkAtoms::placeholderFrame) {
|
||||
isPlaceholder = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue