OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2009, 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2009, 2010 Apple Inc. All rights reserved. |
3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> | 3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> |
4 * | 4 * |
5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
9 * | 9 * |
10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
13 * Library General Public License for more details. | 13 * Library General Public License for more details. |
14 * | 14 * |
15 * You should have received a copy of the GNU Library General Public License | 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 | 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, | 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
18 * Boston, MA 02110-1301, USA. | 18 * Boston, MA 02110-1301, USA. |
19 */ | 19 */ |
20 | 20 |
21 // https://html.spec.whatwg.org/#the-body-element | 21 // https://html.spec.whatwg.org/#the-body-element |
22 | 22 |
23 interface HTMLBodyElement : HTMLElement { | 23 interface HTMLBodyElement : HTMLElement { |
24 // obsolete members | 24 // obsolete members |
25 // https://html.spec.whatwg.org/#HTMLBodyElement-partial | 25 // https://html.spec.whatwg.org/#HTMLBodyElement-partial |
26 [CEReactions, Reflect, TreatNullAs=EmptyString] attribute DOMString text; | 26 [CEReactions, Reflect, TreatNullAs=EmptyString] attribute DOMString text; |
27 [CEReactions, Reflect, TreatNullAs=EmptyString] attribute DOMString link; | 27 [Measure, CEReactions, Reflect, TreatNullAs=EmptyString] attribute DOMString l
ink; |
28 [CEReactions, Reflect, TreatNullAs=EmptyString] attribute DOMString vLink; | 28 [Measure, CEReactions, Reflect, TreatNullAs=EmptyString] attribute DOMString v
Link; |
29 [CEReactions, Reflect, TreatNullAs=EmptyString] attribute DOMString aLink; | 29 [Measure, CEReactions, Reflect, TreatNullAs=EmptyString] attribute DOMString a
Link; |
30 [CEReactions, Reflect, TreatNullAs=EmptyString] attribute DOMString bgColor; | 30 [CEReactions, Reflect, TreatNullAs=EmptyString] attribute DOMString bgColor; |
31 [CEReactions, Reflect] attribute DOMString background; | 31 [CEReactions, Reflect] attribute DOMString background; |
32 | 32 |
33 // TODO(foolip): These event handler attributes should be inherited from | 33 // TODO(foolip): These event handler attributes should be inherited from |
34 // HTMLElement (which implements GlobalEventHandlers), but have different | 34 // HTMLElement (which implements GlobalEventHandlers), but have different |
35 // behavior. See https://www.w3.org/Bugs/Public/show_bug.cgi?id=28166 | 35 // behavior. See https://www.w3.org/Bugs/Public/show_bug.cgi?id=28166 |
36 attribute EventHandler onblur; | 36 attribute EventHandler onblur; |
37 attribute EventHandler onerror; | 37 attribute EventHandler onerror; |
38 attribute EventHandler onfocus; | 38 attribute EventHandler onfocus; |
39 attribute EventHandler onload; | 39 attribute EventHandler onload; |
40 attribute EventHandler onresize; | 40 attribute EventHandler onresize; |
41 attribute EventHandler onscroll; | 41 attribute EventHandler onscroll; |
42 | 42 |
43 // Non-standard APIs | 43 // Non-standard APIs |
44 [RuntimeEnabled=OrientationEvent] attribute EventHandler onorientationchange
; | 44 [RuntimeEnabled=OrientationEvent] attribute EventHandler onorientationchange
; |
45 }; | 45 }; |
46 | 46 |
47 HTMLBodyElement implements WindowEventHandlers; | 47 HTMLBodyElement implements WindowEventHandlers; |
OLD | NEW |