OLD | NEW |
(Empty) | |
| 1 /* |
| 2 * Copyright (C) 2006, 2007, 2009, 2010 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 |
| 21 module html { |
| 22 |
| 23 interface [ |
| 24 CustomNamedGetter |
| 25 ] HTMLFrameSetElement : HTMLElement { |
| 26 attribute [Reflect] DOMString cols; |
| 27 attribute [Reflect] DOMString rows; |
| 28 |
| 29 #if !defined(LANGUAGE_OBJECTIVE_C) || !LANGUAGE_OBJECTIVE_C |
| 30 // Event handler attributes |
| 31 attribute [NotEnumerable, JSWindowEventListener] EventListener onbeforeu
nload; |
| 32 attribute [NotEnumerable, JSWindowEventListener] EventListener onhashcha
nge; |
| 33 attribute [NotEnumerable, JSWindowEventListener] EventListener onmessage
; |
| 34 attribute [NotEnumerable, JSWindowEventListener] EventListener onoffline
; |
| 35 attribute [NotEnumerable, JSWindowEventListener] EventListener ononline; |
| 36 attribute [NotEnumerable, JSWindowEventListener] EventListener onpopstat
e; |
| 37 attribute [NotEnumerable, JSWindowEventListener] EventListener onresize; |
| 38 attribute [NotEnumerable, JSWindowEventListener] EventListener onstorage
; |
| 39 attribute [NotEnumerable, JSWindowEventListener] EventListener onunload; |
| 40 |
| 41 attribute [Conditional=ORIENTATION_EVENTS, NotEnumerable, JSWindowEventL
istener] EventListener onorientationchange; |
| 42 |
| 43 // Overrides of Element attributes (with different implementation in bin
dings). |
| 44 attribute [NotEnumerable, JSWindowEventListener] EventListener onblur; |
| 45 attribute [NotEnumerable, JSWindowEventListener] EventListener onerror; |
| 46 attribute [NotEnumerable, JSWindowEventListener] EventListener onfocus; |
| 47 attribute [NotEnumerable, JSWindowEventListener] EventListener onload; |
| 48 |
| 49 // Not implemented yet. |
| 50 // attribute [NotEnumerable, JSWindowEventListener] EventListener onafte
rprint; |
| 51 // attribute [NotEnumerable, JSWindowEventListener] EventListener onbefo
reprint; |
| 52 // attribute [NotEnumerable, JSWindowEventListener] EventListener onredo
; |
| 53 // attribute [NotEnumerable, JSWindowEventListener] EventListener onundo
; |
| 54 #endif |
| 55 }; |
| 56 |
| 57 } |
OLD | NEW |