diff options
Diffstat (limited to 'Source/WebCore/html/HTMLFrameSetElement.idl')
-rw-r--r-- | Source/WebCore/html/HTMLFrameSetElement.idl | 38 |
1 files changed, 13 insertions, 25 deletions
diff --git a/Source/WebCore/html/HTMLFrameSetElement.idl b/Source/WebCore/html/HTMLFrameSetElement.idl index cbf9757ea..9bd3159aa 100644 --- a/Source/WebCore/html/HTMLFrameSetElement.idl +++ b/Source/WebCore/html/HTMLFrameSetElement.idl @@ -24,31 +24,19 @@ [Reflect] attribute DOMString cols; [Reflect] attribute DOMString rows; -#if !defined(LANGUAGE_OBJECTIVE_C) || !LANGUAGE_OBJECTIVE_C - // Event handler attributes - [NotEnumerable, JSWindowEventListener] attribute EventListener onbeforeunload; - [NotEnumerable, JSWindowEventListener] attribute EventListener onhashchange; - [NotEnumerable, JSWindowEventListener] attribute EventListener onmessage; - [NotEnumerable, JSWindowEventListener] attribute EventListener onoffline; - [NotEnumerable, JSWindowEventListener] attribute EventListener ononline; - [NotEnumerable, JSWindowEventListener] attribute EventListener onpopstate; - [NotEnumerable, JSWindowEventListener] attribute EventListener onresize; - [NotEnumerable, JSWindowEventListener] attribute EventListener onstorage; - [NotEnumerable, JSWindowEventListener] attribute EventListener onunload; + [NotEnumerable, WindowEventHandler] attribute EventHandler onblur; + [NotEnumerable, WindowEventHandler] attribute EventHandler onerror; + [NotEnumerable, WindowEventHandler] attribute EventHandler onfocus; + [NotEnumerable, WindowEventHandler] attribute EventHandler onfocusin; + [NotEnumerable, WindowEventHandler] attribute EventHandler onfocusout; + [NotEnumerable, WindowEventHandler] attribute EventHandler onload; + [NotEnumerable, WindowEventHandler] attribute EventHandler onresize; + [NotEnumerable, WindowEventHandler] attribute EventHandler onscroll; - [Conditional=ORIENTATION_EVENTS, NotEnumerable, JSWindowEventListener] attribute EventListener onorientationchange; - - // Overrides of Element attributes (with different implementation in bindings). - [NotEnumerable, JSWindowEventListener] attribute EventListener onblur; - [NotEnumerable, JSWindowEventListener] attribute EventListener onerror; - [NotEnumerable, JSWindowEventListener] attribute EventListener onfocus; - [NotEnumerable, JSWindowEventListener] attribute EventListener onload; - - // Not implemented yet. - // [NotEnumerable, JSWindowEventListener] attribute EventListener onafterprint; - // [NotEnumerable, JSWindowEventListener] attribute EventListener onbeforeprint; - // [NotEnumerable, JSWindowEventListener] attribute EventListener onredo; - // [NotEnumerable, JSWindowEventListener] attribute EventListener onundo; -#endif + [NotEnumerable, WindowEventHandler, Conditional=WILL_REVEAL_EDGE_EVENTS] attribute EventHandler onwebkitwillrevealbottom; + [NotEnumerable, WindowEventHandler, Conditional=WILL_REVEAL_EDGE_EVENTS] attribute EventHandler onwebkitwillrevealleft; + [NotEnumerable, WindowEventHandler, Conditional=WILL_REVEAL_EDGE_EVENTS] attribute EventHandler onwebkitwillrevealright; + [NotEnumerable, WindowEventHandler, Conditional=WILL_REVEAL_EDGE_EVENTS] attribute EventHandler onwebkitwillrevealtop; }; +HTMLFrameSetElement implements WindowEventHandlers; |