コード例 #1
0
void ShadowRoot::didRemoveInsertionPoint(InsertionPoint* insertionPoint)
{
    m_shadowRootRareData->didRemoveInsertionPoint(insertionPoint);
    invalidateDescendantInsertionPoints();
}
コード例 #2
0
ファイル: ShadowRoot.cpp プロジェクト: Jamesducque/mojo
void ShadowRoot::didRemoveInsertionPoint()
{
    ASSERT(m_descendantContentElementCount);
    --m_descendantContentElementCount;
    invalidateDescendantInsertionPoints();
}
コード例 #3
0
void ShadowRoot::didAddInsertionPoint(InsertionPoint* insertionPoint)
{
    ensureShadowRootRareData()->didAddInsertionPoint(insertionPoint);
    invalidateDescendantInsertionPoints();
}
コード例 #4
0
ファイル: ShadowRoot.cpp プロジェクト: Jamesducque/mojo
void ShadowRoot::didAddInsertionPoint()
{
    ++m_descendantContentElementCount;
    invalidateDescendantInsertionPoints();
}