Home
last modified time | relevance | path

Searched refs:scrollAmount (Results 1 – 5 of 5) sorted by relevance

/external/webkit/Source/WebCore/html/
DHTMLMarqueeElement.cpp131 int HTMLMarqueeElement::scrollAmount() const in scrollAmount() function in WebCore::HTMLMarqueeElement
134 int scrollAmount = fastGetAttribute(scrollamountAttr).toInt(&ok); in scrollAmount() local
135 return ok && scrollAmount >= 0 ? scrollAmount : RenderStyle::initialMarqueeIncrement().value(); in scrollAmount()
138 void HTMLMarqueeElement::setScrollAmount(int scrollAmount, ExceptionCode& ec) in setScrollAmount() argument
140 if (scrollAmount < 0) in setScrollAmount()
143 setIntegralAttribute(scrollamountAttr, scrollAmount); in setScrollAmount()
DHTMLMarqueeElement.h44 int scrollAmount() const;
DHTMLMarqueeElement.idl32 attribute long scrollAmount setter raises(DOMException);
/external/webkit/Source/WebCore/
DChangeLog-2010-12-061649 (WebCore::HTMLMarqueeElement::scrollAmount): If the content attribute
1651 Otherwise, return the default scrollAmount value.
1654 (WebCore::HTMLMarqueeElement::scrollDelay): Same as scrollAmount.
DChangeLog-2011-02-1647316 Marquee elements do not stop animating when scrollAmount is set to 0.