Searched refs:currLayer (Results 1 – 3 of 3) sorted by relevance
1614 …const FillLayer* currLayer = propertyID == CSSPropertyWebkitMaskImage ? &style->maskLayers() : &st… in getPropertyCSSValue() local1615 for (; currLayer; currLayer = currLayer->next()) { in getPropertyCSSValue()1616 if (currLayer->image()) in getPropertyCSSValue()1617 list->append(currLayer->image()->cssValue()); in getPropertyCSSValue()1627 …const FillLayer* currLayer = propertyID == CSSPropertyWebkitMaskSize ? &style->maskLayers() : &sty… in getPropertyCSSValue() local1628 for (; currLayer; currLayer = currLayer->next()) in getPropertyCSSValue()1629 list->append(valueForFillSize(currLayer->size(), *style)); in getPropertyCSSValue()1635 …const FillLayer* currLayer = propertyID == CSSPropertyWebkitMaskRepeat ? &style->maskLayers() : &s… in getPropertyCSSValue() local1636 for (; currLayer; currLayer = currLayer->next()) in getPropertyCSSValue()1637 list->append(valueForFillRepeat(currLayer->repeatX(), currLayer->repeatY())); in getPropertyCSSValue()[all …]
1371 for (RenderLayer* currLayer = layer->parent(); currLayer; currLayer = currLayer->parent()) { in accumulateOffsetTowardsAncestor() local1372 if (currLayer == ancestorLayer) in accumulateOffsetTowardsAncestor()1375 if (isFixedPositionedContainer(currLayer)) { in accumulateOffsetTowardsAncestor()1376 fixedPositionContainerLayer = currLayer; in accumulateOffsetTowardsAncestor()1451 const RenderLayer* currLayer = this; in convertToLayerCoords() local1452 while (currLayer && currLayer != ancestorLayer) in convertToLayerCoords()1453 currLayer = accumulateOffsetTowardsAncestor(currLayer, ancestorLayer, location); in convertToLayerCoords()
1010 for (const FillLayer* currLayer = &layer; currLayer; currLayer = currLayer->next()) { in allLayersAreFixed() local1011 if (!currLayer->image() || currLayer->attachment() != FixedBackgroundAttachment) in allLayersAreFixed()