diff options
Diffstat (limited to 'Source/WebCore/html/HTMLMarqueeElement.idl')
-rw-r--r-- | Source/WebCore/html/HTMLMarqueeElement.idl | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Source/WebCore/html/HTMLMarqueeElement.idl b/Source/WebCore/html/HTMLMarqueeElement.idl index 5b8e3a9f2..c76b459da 100644 --- a/Source/WebCore/html/HTMLMarqueeElement.idl +++ b/Source/WebCore/html/HTMLMarqueeElement.idl @@ -26,16 +26,16 @@ interface HTMLMarqueeElement : HTMLElement { [Reflect] attribute DOMString direction; [Reflect] attribute DOMString height; [Reflect] attribute unsigned long hspace; - [SetterRaisesException] attribute long loop; - [SetterRaisesException] attribute long scrollAmount; - [SetterRaisesException] attribute long scrollDelay; + [SetterMayThrowException] attribute long loop; + attribute unsigned long scrollAmount; + attribute unsigned long scrollDelay; [Reflect] attribute boolean trueSpeed; [Reflect] attribute unsigned long vspace; [Reflect] attribute DOMString width; // FIXME: Implement the following event handler attributes // https://bugs.webkit.org/show_bug.cgi?id=49788 - // attribute EventListener onbounce; - // attribute EventListener onfinish; - // attribute EventListener onstart; + // attribute EventHandler onbounce; + // attribute EventHandler onfinish; + // attribute EventHandler onstart; }; |