Bug 1194851 - Remove the second parameter of IsFixedPosFrameInDisplayPort(). r=kats
No one was using it.
This commit is contained in:
@@ -1824,7 +1824,7 @@ nsLayoutUtils::ViewportHasDisplayPort(nsPresContext* aPresContext, nsRect* aDisp
|
||||
}
|
||||
|
||||
bool
|
||||
nsLayoutUtils::IsFixedPosFrameInDisplayPort(const nsIFrame* aFrame, nsRect* aDisplayPort)
|
||||
nsLayoutUtils::IsFixedPosFrameInDisplayPort(const nsIFrame* aFrame)
|
||||
{
|
||||
// Fixed-pos frames are parented by the viewport frame or the page content frame.
|
||||
// We'll assume that printing/print preview don't have displayports for their
|
||||
@@ -1834,7 +1834,7 @@ nsLayoutUtils::IsFixedPosFrameInDisplayPort(const nsIFrame* aFrame, nsRect* aDis
|
||||
aFrame->StyleDisplay()->mPosition != NS_STYLE_POSITION_FIXED) {
|
||||
return false;
|
||||
}
|
||||
return ViewportHasDisplayPort(aFrame->PresContext(), aDisplayPort);
|
||||
return ViewportHasDisplayPort(aFrame->PresContext());
|
||||
}
|
||||
|
||||
NS_DECLARE_FRAME_PROPERTY(ScrollbarThumbLayerized, nullptr)
|
||||
|
||||
Reference in New Issue
Block a user