зеркало из https://github.com/mozilla/gecko-dev.git
Bug 508665 - part 14, uninline nsIFrame::GetPositionIgnoringScrolling() (since it uses a nsContainerFrame method). r=roc
This commit is contained in:
Родитель
d71fe4d460
Коммит
e29c59327f
|
@ -5184,6 +5184,13 @@ nsIFrame::GetNormalPosition() const
|
|||
return GetPosition();
|
||||
}
|
||||
|
||||
nsPoint
|
||||
nsIFrame::GetPositionIgnoringScrolling()
|
||||
{
|
||||
return GetParent() ? GetParent()->GetPositionOfChildIgnoringScrolling(this)
|
||||
: GetPosition();
|
||||
}
|
||||
|
||||
nsRect
|
||||
nsIFrame::GetOverflowRect(nsOverflowType aType) const
|
||||
{
|
||||
|
|
|
@ -743,10 +743,7 @@ public:
|
|||
virtual nsPoint GetPositionOfChildIgnoringScrolling(nsIFrame* aChild)
|
||||
{ return aChild->GetPosition(); }
|
||||
|
||||
nsPoint GetPositionIgnoringScrolling() {
|
||||
return mParent ? mParent->GetPositionOfChildIgnoringScrolling(this)
|
||||
: GetPosition();
|
||||
}
|
||||
nsPoint GetPositionIgnoringScrolling();
|
||||
|
||||
static void DestroyRegion(void* aPropertyValue);
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче