mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Backed out changeset 5e8625f91b68 (bug 1022612)
This commit is contained in:
parent
6622b23ead
commit
2fda6f0d58
@ -1483,7 +1483,7 @@ nsLayoutUtils::GetScrollableFrameFor(const nsIFrame *aScrolledFrame)
|
||||
{
|
||||
nsIFrame *frame = aScrolledFrame->GetParent();
|
||||
nsIScrollableFrame *sf = do_QueryFrame(frame);
|
||||
return (sf && sf->GetScrolledFrame() == aScrolledFrame) ? sf : nullptr;
|
||||
return sf && sf->GetScrolledFrame() == aScrolledFrame ? sf : nullptr;
|
||||
}
|
||||
|
||||
/* static */ void
|
||||
@ -1605,9 +1605,9 @@ IsScrollbarThumbLayerized(nsIFrame* aThumbFrame)
|
||||
return reinterpret_cast<intptr_t>(aThumbFrame->Properties().Get(ScrollbarThumbLayerized()));
|
||||
}
|
||||
|
||||
nsIFrame*
|
||||
nsLayoutUtils::GetAnimatedGeometryRootForFrame(nsIFrame* aFrame,
|
||||
const nsIFrame* aStopAtAncestor)
|
||||
static nsIFrame*
|
||||
GetAnimatedGeometryRootForFrame(nsIFrame* aFrame,
|
||||
const nsIFrame* aStopAtAncestor)
|
||||
{
|
||||
nsIFrame* f = aFrame;
|
||||
nsIFrame* stickyFrame = nullptr;
|
||||
|
@ -499,14 +499,6 @@ public:
|
||||
static nsIFrame* GetAnimatedGeometryRootFor(nsDisplayItem* aItem,
|
||||
nsDisplayListBuilder* aBuilder);
|
||||
|
||||
/**
|
||||
* Finds the nearest ancestor frame to aFrame that is considered to have (or
|
||||
* will have) "animated geometry". This could be aFrame. Returns
|
||||
* aStopAtAncestor if no closer ancestor is found.
|
||||
*/
|
||||
static nsIFrame* GetAnimatedGeometryRootForFrame(nsIFrame* aFrame,
|
||||
const nsIFrame* aStopAtAncestor);
|
||||
|
||||
/**
|
||||
* GetScrollableFrameFor returns the scrollable frame for a scrolled frame
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user