Searched refs:scrollAmount (Results 1 – 5 of 5) sorted by relevance
131 int HTMLMarqueeElement::scrollAmount() const in scrollAmount() function in WebCore::HTMLMarqueeElement134 int scrollAmount = fastGetAttribute(scrollamountAttr).toInt(&ok); in scrollAmount() local135 return ok && scrollAmount >= 0 ? scrollAmount : RenderStyle::initialMarqueeIncrement().value(); in scrollAmount()138 void HTMLMarqueeElement::setScrollAmount(int scrollAmount, ExceptionCode& ec) in setScrollAmount() argument140 if (scrollAmount < 0) in setScrollAmount()143 setIntegralAttribute(scrollamountAttr, scrollAmount); in setScrollAmount()
44 int scrollAmount() const;
32 attribute long scrollAmount setter raises(DOMException);
1649 (WebCore::HTMLMarqueeElement::scrollAmount): If the content attribute1651 Otherwise, return the default scrollAmount value.1654 (WebCore::HTMLMarqueeElement::scrollDelay): Same as scrollAmount.
47316 Marquee elements do not stop animating when scrollAmount is set to 0.