scrollDelay       147 Source/core/html/HTMLMarqueeElement.cpp     int scrollDelay = fastGetAttribute(scrolldelayAttr).toInt(&ok);
scrollDelay       148 Source/core/html/HTMLMarqueeElement.cpp     return ok && scrollDelay >= 0 ? scrollDelay : RenderStyle::initialMarqueeSpeed();
scrollDelay       151 Source/core/html/HTMLMarqueeElement.cpp void HTMLMarqueeElement::setScrollDelay(int scrollDelay, ExceptionState& exceptionState)
scrollDelay       153 Source/core/html/HTMLMarqueeElement.cpp     if (scrollDelay < 0)
scrollDelay       154 Source/core/html/HTMLMarqueeElement.cpp         exceptionState.throwDOMException(IndexSizeError, "The provided value (" + String::number(scrollDelay) + ") is negative.");
scrollDelay       156 Source/core/html/HTMLMarqueeElement.cpp         setIntegralAttribute(scrolldelayAttr, scrollDelay);
scrollDelay        48 Source/core/html/HTMLMarqueeElement.h     int scrollDelay() const;