• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/*
2 * Copyright (C) 2006, 2009 Apple Inc. All rights reserved.
3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com>
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 * Library General Public License for more details.
14 *
15 * You should have received a copy of the GNU Library General Public License
16 * along with this library; see the file COPYING.LIB.  If not, write to
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA.
19 */
20
21module html {
22
23    interface HTMLBodyElement : HTMLElement {
24        attribute [ConvertNullToNullString, Reflect=alink] DOMString aLink;
25        attribute [ConvertNullToNullString, Reflect] DOMString background;
26        attribute [ConvertNullToNullString, Reflect=bgcolor] DOMString bgColor;
27        attribute [ConvertNullToNullString, Reflect] DOMString link;
28        attribute [ConvertNullToNullString, Reflect] DOMString text;
29        attribute [ConvertNullToNullString, Reflect=vlink] DOMString vLink;
30
31#if !defined(LANGUAGE_OBJECTIVE_C) || !LANGUAGE_OBJECTIVE_C
32        // Event handler attributes
33        attribute [DontEnum] EventListener onbeforeunload;
34        attribute [DontEnum] EventListener onhashchange;
35        attribute [DontEnum] EventListener onmessage;
36        attribute [DontEnum] EventListener onoffline;
37        attribute [DontEnum] EventListener ononline;
38        attribute [DontEnum] EventListener onpopstate;
39        attribute [DontEnum] EventListener onresize;
40        attribute [DontEnum] EventListener onstorage;
41        attribute [DontEnum] EventListener onunload;
42
43#if defined(ENABLE_ORIENTATION_EVENTS) && ENABLE_ORIENTATION_EVENTS
44        attribute [DontEnum] EventListener onorientationchange;
45#endif
46
47        // Overrides of Element attributes (left in for completeness).
48        // attribute [DontEnum] EventListener onblur;
49        // attribute [DontEnum] EventListener onerror;
50        // attribute [DontEnum] EventListener onfocus;
51        // attribute [DontEnum] EventListener onload;
52
53        // Not implemented yet.
54        // attribute [DontEnum] EventListener onafterprint;
55        // attribute [DontEnum] EventListener onbeforeprint;
56        // attribute [DontEnum] EventListener onredo;
57        // attribute [DontEnum] EventListener onundo;
58#endif
59    };
60
61}
62