void ShadowRoot::didRemoveInsertionPoint(InsertionPoint* insertionPoint)
{
    m_shadowRootRareData->didRemoveInsertionPoint(insertionPoint);
    invalidateDescendantInsertionPoints();
}
Exemple #2
0
void ShadowRoot::didRemoveInsertionPoint()
{
    ASSERT(m_descendantContentElementCount);
    --m_descendantContentElementCount;
    invalidateDescendantInsertionPoints();
}
void ShadowRoot::didAddInsertionPoint(InsertionPoint* insertionPoint)
{
    ensureShadowRootRareData()->didAddInsertionPoint(insertionPoint);
    invalidateDescendantInsertionPoints();
}
Exemple #4
0
void ShadowRoot::didAddInsertionPoint()
{
    ++m_descendantContentElementCount;
    invalidateDescendantInsertionPoints();
}