• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/*
2 * Copyright (C) 2006, 2007, 2009 Apple Inc. All rights reserve
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 [
24        GenerateConstructor,
25        HasOverridingNameGetter,
26        InterfaceUUID=5038a73d-c0db-4847-acb4-4c6d31f48790,
27        ImplementationUUID=450f7bf6-fdc0-4a0f-b7e1-baea7f7e5732
28    ] HTMLFrameSetElement : HTMLElement {
29        attribute [ConvertNullToNullString] DOMString cols;
30        attribute [ConvertNullToNullString] DOMString rows;
31
32#if !defined(LANGUAGE_OBJECTIVE_C) || !LANGUAGE_OBJECTIVE_C
33#if !defined(LANGUAGE_COM) || !LANGUAGE_COM
34        // Event handler attributes
35        attribute [DontEnum] EventListener onbeforeunload;
36        attribute [DontEnum] EventListener onmessage;
37        attribute [DontEnum] EventListener onoffline;
38        attribute [DontEnum] EventListener ononline;
39        attribute [DontEnum] EventListener onresize;
40        attribute [DontEnum] EventListener onstorage;
41        attribute [DontEnum] EventListener onunload;
42
43        // Overrides of Element attributes.
44        // attribute [DontEnum] EventListener onblur;
45        // attribute [DontEnum] EventListener onerror;
46        // attribute [DontEnum] EventListener onfocus;
47        // attribute [DontEnum] EventListener onload;
48
49        // Not implemented yet.
50        // attribute [DontEnum] EventListener onafterprint;
51        // attribute [DontEnum] EventListener onbeforeprint;
52        // attribute [DontEnum] EventListener onhashchange;
53        // attribute [DontEnum] EventListener onpopstate;
54        // attribute [DontEnum] EventListener onredo;
55        // attribute [DontEnum] EventListener onundo;
56#endif
57#endif
58    };
59
60}
61