Home | History | Annotate | Download | only in rendering

Lines Matching refs:ancestorStackingContext

520     RenderLayer* ancestorStackingContext = this->ancestorStackingContext();
521 if (!ancestorStackingContext)
529 collectBeforePromotionZOrderList(ancestorStackingContext, posZOrderListBeforePromote, negZOrderListBeforePromote);
530 collectAfterPromotionZOrderList(ancestorStackingContext, posZOrderListAfterPromote, negZOrderListAfterPromote);
575 void RenderLayer::collectBeforePromotionZOrderList(RenderLayer* ancestorStackingContext, OwnPtr<Vector<RenderLayer*> >& posZOrderListBeforePromote, OwnPtr<Vector<RenderLayer*> >& negZOrderListBeforePromote)
577 ancestorStackingContext->rebuildZOrderLists(posZOrderListBeforePromote, negZOrderListBeforePromote, this, OnlyStackingContextsCanBeStackingContainers);
606 void RenderLayer::collectAfterPromotionZOrderList(RenderLayer* ancestorStackingContext, OwnPtr<Vector<RenderLayer*> >& posZOrderListAfterPromote, OwnPtr<Vector<RenderLayer*> >& negZOrderListAfterPromote)
608 ancestorStackingContext->rebuildZOrderLists(posZOrderListAfterPromote, negZOrderListAfterPromote, this, ForceLayerToStackingContainer);
644 RenderLayer* stackingContext = ancestorStackingContext();
1283 RenderLayer* RenderLayer::ancestorStackingContext() const
5495 RenderLayer* ancestorStackingContext = this->ancestorStackingContext();
5496 if (!ancestorStackingContext)
5499 if (!ancestorStackingContext->m_zOrderListsDirty && ancestorStackingContext->posZOrderList()) {
5500 for (size_t index = 0; index < ancestorStackingContext->posZOrderList()->size(); ++index)
5501 ancestorStackingContext->posZOrderList()->at(index)->m_canBePromotedToStackingContainerDirty = true;
5504 ancestorStackingContext->dirtyNormalFlowListCanBePromotedToStackingContainer();
5506 if (!ancestorStackingContext->m_zOrderListsDirty && ancestorStackingContext->negZOrderList()) {
5507 for (size_t index = 0; index < ancestorStackingContext->negZOrderList()->size(); ++index)
5508 ancestorStackingContext->negZOrderList()->at(index)->m_canBePromotedToStackingContainerDirty = true;
5550 RenderLayer* stackingContext = this->ancestorStackingContext();