Searched refs:marquee (Results 1 - 9 of 9) sorted by relevance

/external/webkit/Source/WebCore/rendering/style/
H A DStyleRareNonInheritedData.cpp71 , marquee(o.marquee)
117 && marquee == o.marquee
H A DStyleRareNonInheritedData.h92 DataRef<StyleMarqueeData> marquee; // Marquee properties member in class:WebCore::StyleRareNonInheritedData
H A DRenderStyle.h683 Length marqueeIncrement() const { return rareNonInheritedData->marquee->increment; }
684 int marqueeSpeed() const { return rareNonInheritedData->marquee->speed; }
685 int marqueeLoopCount() const { return rareNonInheritedData->marquee->loops; }
686 EMarqueeBehavior marqueeBehavior() const { return static_cast<EMarqueeBehavior>(rareNonInheritedData->marquee->behavior); }
687 EMarqueeDirection marqueeDirection() const { return static_cast<EMarqueeDirection>(rareNonInheritedData->marquee->direction); }
1044 void setMarqueeIncrement(const Length& f) { SET_VAR(rareNonInheritedData.access()->marquee, increment, f); }
1045 void setMarqueeSpeed(int f) { SET_VAR(rareNonInheritedData.access()->marquee, speed, f); }
1046 void setMarqueeDirection(EMarqueeDirection d) { SET_VAR(rareNonInheritedData.access()->marquee, direction, d); }
1047 void setMarqueeBehavior(EMarqueeBehavior b) { SET_VAR(rareNonInheritedData.access()->marquee, behavior, b); }
1048 void setMarqueeLoopCount(int i) { SET_VAR(rareNonInheritedData.access()->marquee, loop
[all...]
H A DRenderStyle.cpp121 rareNonInheritedData.access()->marquee.init();
/external/webkit/Source/WebCore/css/
H A DCSSPropertyNames.in249 -webkit-marquee
250 -webkit-marquee-direction
251 -webkit-marquee-increment
252 -webkit-marquee-repetition
253 -webkit-marquee-speed
254 -webkit-marquee-style
H A Dhtml.css82 marquee {
84 overflow: -webkit-marquee
/external/webkit/Source/WebCore/html/
H A DHTMLMarqueeElement.cpp196 return renderBoxModelObject()->layer()->marquee();
/external/webkit/Source/WebCore/rendering/
H A DRenderLayer.h190 RenderMarquee* marquee() const { return m_marquee; } function in class:WebCore::RenderLayer
749 RenderMarquee* m_marquee; // Used by layers with overflow:marquee
H A DRenderBlock.cpp4643 // A horizontal marquee with inline children has no minimum width.
4644 if (layer() && layer()->marquee() && layer()->marquee()->isHorizontal())
5213 bool ignoreBaseline = (layer() && (layer()->marquee() || (direction == HorizontalLine ? (layer()->verticalScrollbar() || layer()->scrollYOffset() != 0)

Completed in 651 milliseconds