blob: dfbd9071cd694961bd49e8013bce29b17ac1d154 [file] [log] [blame]
/*
* Copyright (C) 2006, 2009, 2010 Apple Inc. All rights reserved.
* Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
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;
// Event handler attributes
[NotEnumerable] attribute EventHandler onbeforeunload;
[NotEnumerable] attribute EventHandler onhashchange;
[NotEnumerable] attribute EventHandler onmessage;
[NotEnumerable] attribute EventHandler onoffline;
[NotEnumerable] attribute EventHandler ononline;
[NotEnumerable] attribute EventHandler onpopstate;
[NotEnumerable] attribute EventHandler onresize;
[NotEnumerable] attribute EventHandler onstorage;
[NotEnumerable] attribute EventHandler onunload;
[Conditional=ORIENTATION_EVENTS, NotEnumerable] attribute EventHandler onorientationchange;
// Overrides of Element attributes (with different implementation in bindings).
[NotEnumerable] attribute EventHandler onblur;
[NotEnumerable] attribute EventHandler onerror;
[NotEnumerable] attribute EventHandler onfocus;
[NotEnumerable] attribute EventHandler onload;
// Not implemented yet.
// attribute [NotEnumerable] EventHandler onafterprint;
// attribute [NotEnumerable] EventHandler onbeforeprint;
// attribute [NotEnumerable] EventHandler onredo;
// attribute [NotEnumerable] EventHandler onundo;
};