diff options
Diffstat (limited to 'Source/WebCore/html/HTMLBodyElement.idl')
| -rw-r--r-- | Source/WebCore/html/HTMLBodyElement.idl | 61 |
1 files changed, 29 insertions, 32 deletions
diff --git a/Source/WebCore/html/HTMLBodyElement.idl b/Source/WebCore/html/HTMLBodyElement.idl index a6b7f567d..32a7d5095 100644 --- a/Source/WebCore/html/HTMLBodyElement.idl +++ b/Source/WebCore/html/HTMLBodyElement.idl @@ -18,42 +18,39 @@ * Boston, MA 02110-1301, USA. */ -module html { - - interface HTMLBodyElement : HTMLElement { - attribute [Reflect] DOMString aLink; - attribute [Reflect] DOMString background; - attribute [Reflect] DOMString bgColor; - attribute [Reflect] DOMString link; - attribute [Reflect] DOMString text; - attribute [Reflect] DOMString vLink; +interface HTMLBodyElement : HTMLElement { + [Reflect] attribute DOMString aLink; + [Reflect] attribute DOMString background; + [Reflect] attribute DOMString bgColor; + [Reflect] attribute DOMString link; + [Reflect] attribute DOMString text; + [Reflect] attribute DOMString vLink; #if !defined(LANGUAGE_OBJECTIVE_C) || !LANGUAGE_OBJECTIVE_C - // Event handler attributes - attribute [NotEnumerable, JSWindowEventListener] EventListener onbeforeunload; - attribute [NotEnumerable, JSWindowEventListener] EventListener onhashchange; - attribute [NotEnumerable, JSWindowEventListener] EventListener onmessage; - attribute [NotEnumerable, JSWindowEventListener] EventListener onoffline; - attribute [NotEnumerable, JSWindowEventListener] EventListener ononline; - attribute [NotEnumerable, JSWindowEventListener] EventListener onpopstate; - attribute [NotEnumerable, JSWindowEventListener] EventListener onresize; - attribute [NotEnumerable, JSWindowEventListener] EventListener onstorage; - attribute [NotEnumerable, JSWindowEventListener] EventListener onunload; + // 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; - attribute [Conditional=ORIENTATION_EVENTS, NotEnumerable, JSWindowEventListener] EventListener onorientationchange; + [Conditional=ORIENTATION_EVENTS, NotEnumerable, JSWindowEventListener] attribute EventListener onorientationchange; - // Overrides of Element attributes (with different implementation in bindings). - attribute [NotEnumerable, JSWindowEventListener] EventListener onblur; - attribute [NotEnumerable, JSWindowEventListener] EventListener onerror; - attribute [NotEnumerable, JSWindowEventListener] EventListener onfocus; - attribute [NotEnumerable, JSWindowEventListener] EventListener onload; + // 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. - // attribute [NotEnumerable, JSWindowEventListener] EventListener onafterprint; - // attribute [NotEnumerable, JSWindowEventListener] EventListener onbeforeprint; - // attribute [NotEnumerable, JSWindowEventListener] EventListener onredo; - // attribute [NotEnumerable, JSWindowEventListener] EventListener onundo; + // Not implemented yet. + // attribute [NotEnumerable, JSWindowEventListener] EventListener onafterprint; + // attribute [NotEnumerable, JSWindowEventListener] EventListener onbeforeprint; + // attribute [NotEnumerable, JSWindowEventListener] EventListener onredo; + // attribute [NotEnumerable, JSWindowEventListener] EventListener onundo; #endif - }; +}; -} |
