Searched refs:currentStyle (Results 1 - 20 of 20) sorted by relevance

/external/webkit/WebCore/page/animation/
H A DCompositeAnimation.h59 PassRefPtr<RenderStyle> animate(RenderObject*, RenderStyle* currentStyle, RenderStyle* targetStyle);
92 void updateTransitions(RenderObject*, RenderStyle* currentStyle, RenderStyle* targetStyle);
93 void updateKeyframeAnimations(RenderObject*, RenderStyle* currentStyle, RenderStyle* targetStyle);
H A DImplicitAnimation.h54 virtual void animate(CompositeAnimation*, RenderObject*, const RenderStyle* currentStyle, RenderStyle* targetStyle, RefPtr<RenderStyle>& animatedStyle);
67 void blendPropertyValueInStyle(int, RenderStyle* currentStyle);
H A DCompositeAnimation.cpp69 void CompositeAnimation::updateTransitions(RenderObject* renderer, RenderStyle* currentStyle, RenderStyle* targetStyle) argument
71 // If currentStyle is null or there are no old or new transitions, just skip it
72 if (!currentStyle || (!targetStyle->transitions() && m_transitions.isEmpty()))
114 RenderStyle* fromStyle = keyframeAnim ? keyframeAnim->unanimatedStyle() : currentStyle;
141 modifiedCurrentStyle = RenderStyle::clone(currentStyle);
184 void CompositeAnimation::updateKeyframeAnimations(RenderObject* renderer, RenderStyle* currentStyle, RenderStyle* targetStyle) argument
194 if (currentStyle && currentStyle->hasAnimations() && targetStyle->hasAnimations() && *(currentStyle->animations()) == *(targetStyle->animations())) {
236 keyframeAnim = KeyframeAnimation::create(const_cast<Animation*>(anim), renderer, i, this, currentStyle
261 animate(RenderObject* renderer, RenderStyle* currentStyle, RenderStyle* targetStyle) argument
[all...]
H A DKeyframeAnimation.h49 virtual void animate(CompositeAnimation*, RenderObject*, const RenderStyle* currentStyle, RenderStyle* targetStyle, RefPtr<RenderStyle>& animatedStyle);
H A DImplicitAnimation.cpp220 void ImplicitAnimation::blendPropertyValueInStyle(int prop, RenderStyle* currentStyle) argument
228 blendProperties(this, prop, currentStyle, m_fromStyle.get(), m_toStyle.get(), progress(1, 0, 0));
/external/webkit/WebCore/dom/
H A DElement.cpp815 bool Element::pseudoStyleCacheIsInvalid(const RenderStyle* currentStyle, RenderStyle* newStyle) argument
817 ASSERT(currentStyle == renderStyle());
819 if (!renderer() || !currentStyle)
823 currentStyle->getPseudoStyleCache(pseudoStyleCache);
845 // Ref currentStyle in case it would otherwise be deleted when setRenderStyle() is called.
846 RefPtr<RenderStyle> currentStyle(renderStyle());
848 bool hasPositionalRules = needsStyleRecalc() && currentStyle && currentStyle->childrenAffectedByPositionalRules();
849 bool hasDirectAdjacentRules = currentStyle && currentStyle
[all...]
H A DElement.h297 bool pseudoStyleCacheIsInvalid(const RenderStyle* currentStyle, RenderStyle* newStyle);
/external/webkit/WebKit/mac/WebView/
H A DWebEditingDelegate.h49 - (BOOL)webView:(WebView *)webView shouldChangeTypingStyle:(DOMCSSStyleDeclaration *)currentStyle toStyle:(DOMCSSStyleDeclaration *)proposedStyle;
/external/webkit/WebKitTools/DumpRenderTree/mac/
H A DEditingDelegate.mm150 - (BOOL)webView:(WebView *)webView shouldChangeTypingStyle:(DOMCSSStyleDeclaration *)currentStyle toStyle:(DOMCSSStyleDeclaration *)proposedStyle
153 printf("EDITING DELEGATE: shouldChangeTypingStyle:%s toStyle:%s\n", [[currentStyle description] UTF8String], [[proposedStyle description] UTF8String]);
/external/webkit/WebKit/win/WebCoreSupport/
H A DWebEditorClient.h72 bool shouldChangeTypingStyle(WebCore::CSSStyleDeclaration* currentStyle, WebCore::CSSStyleDeclaration* toProposedStyle);
/external/webkit/WebKit/mac/DefaultDelegates/
H A DWebDefaultEditingDelegate.m95 - (BOOL)webView:(WebView *)webView shouldChangeTypingStyle:(DOMCSSStyleDeclaration *)currentStyle toStyle:(DOMCSSStyleDeclaration *)proposedStyle
/external/webkit/WebKitTools/DumpRenderTree/win/
H A DEditingDelegate.h90 /* [in] */ IDOMCSSStyleDeclaration *currentStyle,
H A DEditingDelegate.cpp264 /* [in] */ IDOMCSSStyleDeclaration* currentStyle,
274 _tprintf(TEXT("EDITING DELEGATE: shouldChangeTypingStyle:%s toStyle:%s\n"), TEXT("'currentStyle description'"), TEXT("'proposedStyle description'"));
262 shouldChangeTypingStyle( IWebView* webView, IDOMCSSStyleDeclaration* currentStyle, IDOMCSSStyleDeclaration* proposedStyle, BOOL* result) argument
/external/webkit/WebKit/win/Interfaces/
H A DIWebEditingDelegate.idl138 - (BOOL)webView:(WebView *)webView shouldChangeTypingStyle:(DOMCSSStyleDeclaration *)currentStyle toStyle:(DOMCSSStyleDeclaration *)proposedStyle;
140 HRESULT shouldChangeTypingStyle([in] IWebView* webView, [in] IDOMCSSStyleDeclaration* currentStyle, [in] IDOMCSSStyleDeclaration* proposedStyle, [out, retval] BOOL* result);
/external/webkit/WebCore/css/
H A DCSSPrimitiveValue.h127 double computeLengthDouble(RenderStyle* currentStyle, RenderStyle* rootStyle, double multiplier = 1.0, bool computingFontSize = false);
/external/webkit/SunSpider/tests/parse-only/
H A Djquery-1.3.2.js817 } else if ( elem.currentStyle ) {
822 ret = elem.currentStyle[ name ] || elem.currentStyle[ camelCase ];
834 elem.runtimeStyle.left = elem.currentStyle.left;
H A Dconcat-jquery-mootools-prototype.js817 } else if ( elem.currentStyle ) {
822 ret = elem.currentStyle[ name ] || elem.currentStyle[ camelCase ];
834 elem.runtimeStyle.left = elem.currentStyle.left;
6156 if (this.currentStyle) return this.currentStyle[property.camelCase()];
6520 if (!this.currentStyle || !this.currentStyle.hasLayout) this.style.zoom = 1;
10651 if (!value && element.currentStyle) value = element.currentStyle[styl
[all...]
H A Dprototype-1.6.0.3.js2272 if (!value && element.currentStyle) value = element.currentStyle[style];
2293 var currentStyle = element.currentStyle;
2294 if ((currentStyle && !currentStyle.hasLayout) ||
2295 (!currentStyle && element.style.zoom == 'normal'))
H A Dmootools-1.2.2-core-nc.js1780 if (this.currentStyle) return this.currentStyle[property.camelCase()];
2144 if (!this.currentStyle || !this.currentStyle.hasLayout) this.style.zoom = 1;
/external/webkit/WebCore/rendering/
H A DRenderBlock.cpp5009 RenderStyle* currentStyle = firstLineStyle();
5016 switch (currentStyle->textAlign()) {
5019 if (currentStyle->direction() == RTL)

Completed in 162 milliseconds