| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2009 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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 attribute EventHandler oncut; | 143 attribute EventHandler oncut; |
| 144 attribute EventHandler onpaste; | 144 attribute EventHandler onpaste; |
| 145 attribute EventHandler onsearch; | 145 attribute EventHandler onsearch; |
| 146 attribute EventHandler onselectstart; | 146 attribute EventHandler onselectstart; |
| 147 [RuntimeEnabled=Touch] attribute EventHandler ontouchcancel; | 147 [RuntimeEnabled=Touch] attribute EventHandler ontouchcancel; |
| 148 [RuntimeEnabled=Touch] attribute EventHandler ontouchend; | 148 [RuntimeEnabled=Touch] attribute EventHandler ontouchend; |
| 149 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove; | 149 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove; |
| 150 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart; | 150 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart; |
| 151 attribute EventHandler onwebkitfullscreenchange; | 151 attribute EventHandler onwebkitfullscreenchange; |
| 152 attribute EventHandler onwebkitfullscreenerror; | 152 attribute EventHandler onwebkitfullscreenerror; |
| 153 [ActivityLogging=SetterForAllWorlds] attribute EventHandler onwheel; | 153 [PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute EventH
andler onwheel; |
| 154 }; | 154 }; |
| 155 | 155 |
| 156 Element implements ParentNode; | 156 Element implements ParentNode; |
| 157 Element implements ChildNode; | 157 Element implements ChildNode; |
| OLD | NEW |