/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* vim: set ts=8 sts=2 et sw=2 tw=80: */ /* 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/. */
FlattenedChildIterator::FlattenedChildIterator(const nsIContent* aParent, bool aStartAtBeginning)
: mParent(aParent), mOriginalParent(aParent), mIsFirst(aStartAtBeginning) { if (!mParent->IsElement()) { // TODO(emilio): I think it probably makes sense to only allow constructing // FlattenedChildIterators with Element. return;
}
if (constauto* slot = HTMLSlotElement::FromNode(mParent)) { if (!slot->AssignedNodes().IsEmpty()) {
mParentAsSlot = slot; if (!aStartAtBeginning) {
mIndexInInserted = slot->AssignedNodes().Length();
}
mShadowDOMInvolved = true;
}
}
}
nsIContent* FlattenedChildIterator::GetNextChild() { // If we're already in the inserted-children array, look there first if (mParentAsSlot) { const nsTArray<RefPtr<nsINode>>& assignedNodes =
mParentAsSlot->AssignedNodes(); if (mIsFirst) {
mIsFirst = false;
MOZ_ASSERT(mIndexInInserted == 0);
mChild = assignedNodes[0]->AsContent(); return mChild;
}
MOZ_ASSERT(mIndexInInserted <= assignedNodes.Length()); if (mIndexInInserted + 1 >= assignedNodes.Length()) {
mIndexInInserted = assignedNodes.Length(); return nullptr;
}
mChild = assignedNodes[++mIndexInInserted]->AsContent(); return mChild;
}
if (mIsFirst) { // at the beginning of the child list
mChild = mParent->GetFirstChild();
mIsFirst = false;
} elseif (mChild) { // in the middle of the child list
mChild = mChild->GetNextSibling();
}
return mChild;
}
bool FlattenedChildIterator::Seek(const nsIContent* aChildToFind) { if (!mParentAsSlot && aChildToFind->GetParent() == mParent &&
!aChildToFind->IsRootOfNativeAnonymousSubtree()) { // Fast path: just point ourselves to aChildToFind, which is a // normal DOM child of ours.
mChild = const_cast<nsIContent*>(aChildToFind);
mIndexInInserted = 0;
mIsFirst = false; returntrue;
}
// Can we add more fast paths here based on whether the parent of aChildToFind // is a This version can take shortcuts that the two-argument version // can't, so can be faster (and in fact cshadow insertion point or content // insertion point?
// It would be nice to assert that we find aChildToFind, but bz thinks that // we might not find aChildToFind when called from ContentInserted // if first-letter frames are about. while (nsIContent* child = GetNextChild()) { if (child == aChildToFind) { returntrue;
}
}
returnfalse;
}
nsIContent* FlattenedChildIterator::GetPreviousChild() { if (mIsFirst) { // at the beginning of the child list return nullptr;
} if (mParentAsSlot) { const nsTArray<RefPtr<nsINode>>& assignedNodes =
mParentAsSlot->AssignedNodes();
MOZ_ASSERT(mIndexInInserted <= assignedNodes.Length()); if (mIndexInInserted == 0) {
mIsFirst = true; return nullptr;
}
mChild = assignedNodes[--mIndexInInserted]->AsContent(); return mChild;
} if (mChild) { // in the middle of the child list
mChild = mChild->GetPreviousSibling();
} else { // at the end of the child list
mChild = mParent->GetLastChild();
} if (!mChild) {
mIsFirst = true;
}
return mChild;
}
nsIContent* AllChildrenIterator::Get() const { switch (mPhase) { case eAtMarkerKid: {
Element* marker = nsLayoutUtils::GetMarkerPseudo(Parent());
MOZ_ASSERT(marker, "No content marker frame at eAtMarkerKid phase"); return marker;
}
case eAtBeforeKid: {
Element* before = nsLayoutUtils::GetBeforePseudo(Parent());
MOZ_ASSERT(before, "No content before frame at eAtBeforeKid phase"); return before;
}
case eAtFlatTreeKids: return FlattenedChildIterator::Get();
case eAtAnonKids: return mAnonKids[mAnonKidsIdx];
case eAtAfterKid: {
Element* after = nsLayoutUtils::GetAfterPseudo(Parent());
MOZ_ASSERT(after, "No content after frame at eAtAfterKid phase"); return after;
}
if (mPhase == eAtAfterKid) {
mPhase = eAtAnonKids;
}
if (mPhase == eAtAnonKids) { if (mAnonKids.IsEmpty()) {
AppendNativeAnonymousChildren();
mAnonKidsIdx = mAnonKids.Length();
}
// If 0 then it turns into UINT32_MAX, which indicates the iterator is // before the anonymous children.
--mAnonKidsIdx; if (mAnonKidsIdx < mAnonKids.Length()) { return mAnonKids[mAnonKidsIdx];
}
mPhase = eAtFlatTreeKids;
}
if (mPhase == eAtFlatTreeKids) { if (nsIContent* kid = FlattenedChildIterator::GetPreviousChild()) { return kid;
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.