Searched refs:newStyle (Results 1 - 25 of 73) sorted by relevance

123

/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DRenderLayerModelObject.cpp92 void RenderLayerModelObject::styleWillChange(StyleDifference diff, const RenderStyle* newStyle) argument
103 if (oldStyle && newStyle) {
109 if (!(oldStyle->clip() == newStyle->clip()))
111 } else if (diff == StyleDifferenceRepaint || newStyle->outlineSize() < oldStyle->outlineSize())
119 if (oldStyle->position() != newStyle->position()
120 || oldStyle->zIndex() != newStyle->zIndex()
121 || oldStyle->hasAutoZIndex() != newStyle->hasAutoZIndex()
122 || !(oldStyle->clip() == newStyle->clip())
123 || oldStyle->hasClip() != newStyle->hasClip()
124 || oldStyle->opacity() != newStyle
[all...]
H A DRenderButton.cpp74 void RenderButton::styleWillChange(StyleDifference diff, const RenderStyle* newStyle) argument
82 m_inner->style()->setFlexGrow(newStyle->initialFlexGrow());
83 m_inner->style()->setMarginTop(newStyle->initialMargin());
84 m_inner->style()->setMarginBottom(newStyle->initialMargin());
86 RenderBlock::styleWillChange(diff, newStyle);
H A DRenderTableRow.cpp56 static bool borderWidthChanged(const RenderStyle* oldStyle, const RenderStyle* newStyle) argument
58 return oldStyle->borderLeftWidth() != newStyle->borderLeftWidth()
59 || oldStyle->borderTopWidth() != newStyle->borderTopWidth()
60 || oldStyle->borderRightWidth() != newStyle->borderRightWidth()
61 || oldStyle->borderBottomWidth() != newStyle->borderBottomWidth();
277 RefPtr<RenderStyle> newStyle = RenderStyle::createAnonymousStyleWithDisplay(parent->style(), TABLE_ROW); local
278 newRow->setStyle(newStyle.release());
H A DRenderCounter.h41 static void rendererStyleChanged(RenderObject*, const RenderStyle* oldStyle, const RenderStyle* newStyle);
H A DRenderRubyRun.cpp204 RefPtr<RenderStyle> newStyle = RenderStyle::createAnonymousStyleWithDisplay(style(), BLOCK); local
205 newStyle->setTextAlign(CENTER); // FIXME: use WEBKIT_CENTER?
206 renderer->setStyle(newStyle.release());
215 RefPtr<RenderStyle> newStyle = RenderStyle::createAnonymousStyleWithDisplay(parentRuby->style(), INLINE_BLOCK); local
216 rr->setStyle(newStyle.release());
H A DRenderButton.h61 virtual void styleWillChange(StyleDifference, const RenderStyle* newStyle);
H A DRenderDeprecatedFlexibleBox.h41 virtual void styleWillChange(StyleDifference, const RenderStyle* newStyle) OVERRIDE;
H A DRenderLayerModelObject.h43 virtual void styleWillChange(StyleDifference, const RenderStyle* newStyle) OVERRIDE;
H A DRenderListMarker.h78 virtual void styleWillChange(StyleDifference, const RenderStyle* newStyle);
H A DRenderScrollbarPart.h60 virtual void styleWillChange(StyleDifference diff, const RenderStyle* newStyle);
/macosx-10.9.5/WebCore-7537.78.1/rendering/svg/
H A DRenderSVGBlock.cpp55 RefPtr<RenderStyle> newStyle = RenderStyle::create(); local
56 newStyle->inheritFrom(useStyle.get());
57 newStyle->setDisplay(BLOCK);
58 useStyle = newStyle.release();
95 void RenderSVGBlock::styleWillChange(StyleDifference diff, const RenderStyle* newStyle) argument
99 RenderBlock::styleWillChange(diff, newStyle);
H A DSVGResourcesCache.h44 static void clientWasAddedToTree(RenderObject*, const RenderStyle* newStyle);
56 static void clientStyleChanged(RenderObject*, StyleDifference, const RenderStyle* newStyle);
H A DRenderSVGBlock.h46 virtual void styleWillChange(StyleDifference, const RenderStyle* newStyle);
H A DRenderSVGResourceFilterPrimitive.cpp53 const SVGRenderStyle* newStyle = this->style()->svgStyle(); local
55 if (newStyle->floodColor() != oldStyle->svgStyle()->floodColor())
57 if (newStyle->floodOpacity() != oldStyle->svgStyle()->floodOpacity())
60 if (newStyle->lightingColor() != oldStyle->svgStyle()->lightingColor())
H A DRenderSVGInline.cpp109 void RenderSVGInline::styleWillChange(StyleDifference diff, const RenderStyle* newStyle) argument
113 RenderInline::styleWillChange(diff, newStyle);
H A DRenderSVGInline.h58 virtual void styleWillChange(StyleDifference, const RenderStyle* newStyle);
H A DRenderSVGModelObject.h63 virtual void styleWillChange(StyleDifference, const RenderStyle* newStyle);
H A DSVGResourcesCache.cpp125 void SVGResourcesCache::clientStyleChanged(RenderObject* renderer, StyleDifference diff, const RenderStyle* newStyle) argument
136 // FIXME: Avoid passing in a useless StyleDifference, but instead compare oldStyle/newStyle to see which resources changed
141 cache->addResourcesFromRenderObject(renderer, newStyle);
150 void SVGResourcesCache::clientWasAddedToTree(RenderObject* renderer, const RenderStyle* newStyle) argument
159 cache->addResourcesFromRenderObject(renderer, newStyle);
/macosx-10.9.5/WebCore-7537.78.1/rendering/mathml/
H A DRenderMathMLRow.cpp47 RefPtr<RenderStyle> newStyle = RenderStyle::createAnonymousStyleWithDisplay(parent->style(), FLEX); local
50 newMRow->setStyle(newStyle.release());
H A DRenderMathMLFenced.cpp87 RefPtr<RenderStyle> newStyle = RenderStyle::createAnonymousStyleWithDisplay(style(), FLEX); local
88 newStyle->setFlexDirection(FlowColumn);
89 newStyle->setMarginEnd(Length((operatorType == RenderMathMLOperator::Fence ? gFenceMarginEms : gSeparatorMarginEndEms) * style()->fontSize(), Fixed));
91 newStyle->setMarginStart(Length(gFenceMarginEms * style()->fontSize(), Fixed));
94 newOperator->setStyle(newStyle.release());
H A DRenderMathMLOperator.cpp174 RefPtr<RenderStyle> newStyle = RenderStyle::create(); local
175 newStyle->inheritFrom(style());
176 newStyle->setDisplay(FLEX);
183 container->setStyle(newStyle.release());
194 RefPtr<RenderStyle> newStyle = RenderStyle::create(); local
195 newStyle->inheritFrom(style());
196 newStyle->setDisplay(FLEX);
197 text->setStyle(newStyle.release());
/macosx-10.9.5/ICU-511.35/icuSources/test/intltest/
H A Dreptest.cpp122 UChar newStyle = NO_STYLE; local
124 newStyle = styles.charAt(start);
126 newStyle = styles.charAt(start-1);
128 newStyle = styles.charAt(limit);
139 s.append(newStyle);
/macosx-10.9.5/WebKit-7537.78.2/win/
H A DDOMCSSClasses.cpp57 DOMCSSStyleDeclaration* newStyle = new DOMCSSStyleDeclaration(s); local
58 hr = newStyle->QueryInterface(IID_IDOMCSSStyleDeclaration, (void**)&domStyle);
/macosx-10.9.5/WebCore-7537.78.1/page/animation/
H A DAnimationController.h53 PassRefPtr<RenderStyle> updateAnimations(RenderObject*, RenderStyle* newStyle);
H A DAnimationController.cpp510 PassRefPtr<RenderStyle> AnimationController::updateAnimations(RenderObject* renderer, RenderStyle* newStyle) argument
514 return newStyle;
518 if ((!oldStyle || (!oldStyle->animations() && !oldStyle->transitions())) && (!newStyle->animations() && !newStyle->transitions()))
519 return newStyle;
523 return newStyle;
534 RefPtr<RenderStyle> blendedStyle = rendererAnimations->animate(renderer, oldStyle, newStyle);
536 if (renderer->parent() || newStyle->animations() || (oldStyle && oldStyle->animations())) {
544 if (blendedStyle != newStyle) {

Completed in 137 milliseconds

123