Bug 1426503 - Remove DestInsertionPoints stuff

Tag #1375
This commit is contained in:
Matt A. Tobin 2020-04-17 07:37:07 -04:00 committed by Roy Tam
commit 7e48e4407c
8 changed files with 0 additions and 168 deletions

View file

@ -1131,23 +1131,6 @@ FragmentOrElement::SetShadowRoot(ShadowRoot* aShadowRoot)
slots->mShadowRoot = aShadowRoot;
}
nsTArray<nsIContent*>&
FragmentOrElement::DestInsertionPoints()
{
nsExtendedDOMSlots* slots = ExtendedDOMSlots();
return slots->mDestInsertionPoints;
}
nsTArray<nsIContent*>*
FragmentOrElement::GetExistingDestInsertionPoints() const
{
nsExtendedDOMSlots* slots = GetExistingExtendedDOMSlots();
if (slots) {
return &slots->mDestInsertionPoints;
}
return nullptr;
}
HTMLSlotElement*
FragmentOrElement::GetAssignedSlot() const
{