| 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, |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 interface HTMLBodyElement : HTMLElement { | 21 interface HTMLBodyElement : HTMLElement { |
| 22 [Reflect] attribute DOMString aLink; | 22 [Reflect] attribute DOMString aLink; |
| 23 [Reflect] attribute DOMString background; | 23 [Reflect] attribute DOMString background; |
| 24 [Reflect] attribute DOMString bgColor; | 24 [Reflect] attribute DOMString bgColor; |
| 25 [Reflect] attribute DOMString link; | 25 [Reflect] attribute DOMString link; |
| 26 [Reflect] attribute DOMString text; | 26 [Reflect] attribute DOMString text; |
| 27 [Reflect] attribute DOMString vLink; | 27 [Reflect] attribute DOMString vLink; |
| 28 | 28 |
| 29 #if !defined(LANGUAGE_OBJECTIVE_C) || !LANGUAGE_OBJECTIVE_C | 29 #if !defined(LANGUAGE_OBJECTIVE_C) || !LANGUAGE_OBJECTIVE_C |
| 30 // Event handler attributes | 30 // Event handler attributes |
| 31 [NotEnumerable, JSWindowEventListener] attribute EventListener onbeforeunloa
d; | 31 [NotEnumerable] attribute EventListener onbeforeunload; |
| 32 [NotEnumerable, JSWindowEventListener] attribute EventListener onhashchange; | 32 [NotEnumerable] attribute EventListener onhashchange; |
| 33 [NotEnumerable, JSWindowEventListener] attribute EventListener onmessage; | 33 [NotEnumerable] attribute EventListener onmessage; |
| 34 [NotEnumerable, JSWindowEventListener] attribute EventListener onoffline; | 34 [NotEnumerable] attribute EventListener onoffline; |
| 35 [NotEnumerable, JSWindowEventListener] attribute EventListener ononline; | 35 [NotEnumerable] attribute EventListener ononline; |
| 36 [NotEnumerable, JSWindowEventListener] attribute EventListener onpopstate; | 36 [NotEnumerable] attribute EventListener onpopstate; |
| 37 [NotEnumerable, JSWindowEventListener] attribute EventListener onresize; | 37 [NotEnumerable] attribute EventListener onresize; |
| 38 [NotEnumerable, JSWindowEventListener] attribute EventListener onstorage; | 38 [NotEnumerable] attribute EventListener onstorage; |
| 39 [NotEnumerable, JSWindowEventListener] attribute EventListener onunload; | 39 [NotEnumerable] attribute EventListener onunload; |
| 40 | 40 |
| 41 [Conditional=ORIENTATION_EVENTS, NotEnumerable, JSWindowEventListener] attri
bute EventListener onorientationchange; | 41 [Conditional=ORIENTATION_EVENTS, NotEnumerable] attribute EventListener onor
ientationchange; |
| 42 | 42 |
| 43 // Overrides of Element attributes (with different implementation in binding
s). | 43 // Overrides of Element attributes (with different implementation in binding
s). |
| 44 [NotEnumerable, JSWindowEventListener] attribute EventListener onblur; | 44 [NotEnumerable] attribute EventListener onblur; |
| 45 [NotEnumerable, JSWindowEventListener] attribute EventListener onerror; | 45 [NotEnumerable] attribute EventListener onerror; |
| 46 [NotEnumerable, JSWindowEventListener] attribute EventListener onfocus; | 46 [NotEnumerable] attribute EventListener onfocus; |
| 47 [NotEnumerable, JSWindowEventListener] attribute EventListener onload; | 47 [NotEnumerable] attribute EventListener onload; |
| 48 | 48 |
| 49 // Not implemented yet. | 49 // Not implemented yet. |
| 50 // attribute [NotEnumerable, JSWindowEventListener] EventListener onafterpri
nt; | 50 // attribute [NotEnumerable] EventListener onafterprint; |
| 51 // attribute [NotEnumerable, JSWindowEventListener] EventListener onbeforepr
int; | 51 // attribute [NotEnumerable] EventListener onbeforeprint; |
| 52 // attribute [NotEnumerable, JSWindowEventListener] EventListener onredo; | 52 // attribute [NotEnumerable] EventListener onredo; |
| 53 // attribute [NotEnumerable, JSWindowEventListener] EventListener onundo; | 53 // attribute [NotEnumerable] EventListener onundo; |
| 54 #endif | 54 #endif |
| 55 }; | 55 }; |
| 56 | 56 |
| OLD | NEW |