mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
6260202cb6
MozReview-Commit-ID: JthSGAb5Kp3 --HG-- extra : rebase_source : cd00795753547f31b4d205d0d4b8b82b37d0bb75 extra : histedit_source : f867f175155d7aa3fa70bdbbd10119bd8310384d
46 lines
1.3 KiB
C++
46 lines
1.3 KiB
C++
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#include "DisplayItemScrollClip.h"
|
|
|
|
#include "DisplayItemClip.h"
|
|
|
|
namespace mozilla {
|
|
|
|
/* static */ bool
|
|
DisplayItemScrollClip::IsAncestor(const DisplayItemScrollClip* aAncestor,
|
|
const DisplayItemScrollClip* aDescendant)
|
|
{
|
|
if (!aAncestor) {
|
|
// null means root.
|
|
return true;
|
|
}
|
|
|
|
for (const DisplayItemScrollClip* sc = aDescendant; sc; sc = sc->mParent) {
|
|
if (sc == aAncestor) {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
/* static */ nsCString
|
|
DisplayItemScrollClip::ToString(const DisplayItemScrollClip* aScrollClip)
|
|
{
|
|
nsAutoCString str;
|
|
for (const DisplayItemScrollClip* scrollClip = aScrollClip;
|
|
scrollClip; scrollClip = scrollClip->mParent) {
|
|
str.AppendPrintf("<%s>%s", scrollClip->mClip ? scrollClip->mClip->ToString().get() : "null",
|
|
scrollClip->mIsAsyncScrollable ? " [async-scrollable]" : "");
|
|
if (scrollClip->mParent) {
|
|
str.Append(", ");
|
|
}
|
|
}
|
|
return str;
|
|
}
|
|
|
|
} // namespace mozilla
|