| 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 12 matching lines...) Expand all Loading... |
| 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 [Reflect, TreatNullAs=EmptyString] attribute DOMString text; | 26 [Reflect, TreatNullAs=EmptyString] attribute DOMString text; |
| 27 [Reflect, TreatNullAs=EmptyString] attribute DOMString link; | 27 [Reflect, TreatNullAs=EmptyString] attribute DOMString link; |
| 28 [Reflect, TreatNullAs=EmptyString] attribute DOMString vLink; | 28 [Reflect, TreatNullAs=EmptyString] attribute DOMString vLink; |
| 29 [Reflect, TreatNullAs=EmptyString] attribute DOMString aLink; | 29 [Reflect, TreatNullAs=EmptyString] attribute DOMString aLink; |
| 30 [Reflect, TreatNullAs=EmptyString] attribute DOMString bgColor; | 30 [Reflect, TreatNullAs=EmptyString] attribute DOMString bgColor; |
| 31 [Reflect] attribute DOMString background; | 31 [Reflect] attribute DOMString background; |
| 32 | 32 |
| 33 // TODO(philipj): 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 |