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 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
192 // WebKit extensions | 192 // WebKit extensions |
193 [NotEnumerable, PerWorldBindings] attribute EventListener onbeforecut; | 193 [NotEnumerable, PerWorldBindings] attribute EventListener onbeforecut; |
194 [NotEnumerable, PerWorldBindings] attribute EventListener oncut; | 194 [NotEnumerable, PerWorldBindings] attribute EventListener oncut; |
195 [NotEnumerable, PerWorldBindings] attribute EventListener onbeforecopy; | 195 [NotEnumerable, PerWorldBindings] attribute EventListener onbeforecopy; |
196 [NotEnumerable, PerWorldBindings] attribute EventListener oncopy; | 196 [NotEnumerable, PerWorldBindings] attribute EventListener oncopy; |
197 [NotEnumerable, PerWorldBindings] attribute EventListener onbeforepaste; | 197 [NotEnumerable, PerWorldBindings] attribute EventListener onbeforepaste; |
198 [NotEnumerable, PerWorldBindings] attribute EventListener onpaste; | 198 [NotEnumerable, PerWorldBindings] attribute EventListener onpaste; |
199 [NotEnumerable, PerWorldBindings] attribute EventListener onreset; | 199 [NotEnumerable, PerWorldBindings] attribute EventListener onreset; |
200 [NotEnumerable, PerWorldBindings] attribute EventListener onsearch; | 200 [NotEnumerable, PerWorldBindings] attribute EventListener onsearch; |
201 [NotEnumerable, PerWorldBindings] attribute EventListener onselectstart; | 201 [NotEnumerable, PerWorldBindings] attribute EventListener onselectstart; |
202 [NotEnumerable,Conditional=TOUCH_EVENTS,EnabledAtRuntime=touch, PerWorldBind ings] attribute EventListener ontouchstart; | 202 [NotEnumerable,EnabledAtRuntime=touch, PerWorldBindings] attribute EventList ener ontouchstart; |
eseidel
2013/04/16 19:31:15
Missing a space.
| |
203 [NotEnumerable,Conditional=TOUCH_EVENTS,EnabledAtRuntime=touch, PerWorldBind ings] attribute EventListener ontouchmove; | 203 [NotEnumerable,EnabledAtRuntime=touch, PerWorldBindings] attribute EventList ener ontouchmove; |
204 [NotEnumerable,Conditional=TOUCH_EVENTS,EnabledAtRuntime=touch, PerWorldBind ings] attribute EventListener ontouchend; | 204 [NotEnumerable,EnabledAtRuntime=touch, PerWorldBindings] attribute EventList ener ontouchend; |
205 [NotEnumerable,Conditional=TOUCH_EVENTS,EnabledAtRuntime=touch, PerWorldBind ings] attribute EventListener ontouchcancel; | 205 [NotEnumerable,EnabledAtRuntime=touch, PerWorldBindings] attribute EventList ener ontouchcancel; |
206 [NotEnumerable, PerWorldBindings] attribute EventListener onwebkitfullscreen change; | 206 [NotEnumerable, PerWorldBindings] attribute EventListener onwebkitfullscreen change; |
207 [NotEnumerable, PerWorldBindings] attribute EventListener onwebkitfullscreen error; | 207 [NotEnumerable, PerWorldBindings] attribute EventListener onwebkitfullscreen error; |
208 }; | 208 }; |
209 | 209 |
OLD | NEW |