OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2011 Apple Inc. All rights reserved. |
3 * Copyright (C) 2006, 2007 Samuel Weinig <sam@webkit.org> | 3 * Copyright (C) 2006, 2007 Samuel Weinig <sam@webkit.org> |
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 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 [RuntimeEnabled=Touch] Touch createTouch([Default=Undefined] optional Window
window, | 171 [RuntimeEnabled=Touch] Touch createTouch([Default=Undefined] optional Window
window, |
172 [Default=Undefined] optional EventT
arget target, | 172 [Default=Undefined] optional EventT
arget target, |
173 [Default=Undefined] optional long i
dentifier, | 173 [Default=Undefined] optional long i
dentifier, |
174 [Default=Undefined] optional unrest
ricted double pageX, | 174 [Default=Undefined] optional unrest
ricted double pageX, |
175 [Default=Undefined] optional unrest
ricted double pageY, | 175 [Default=Undefined] optional unrest
ricted double pageY, |
176 [Default=Undefined] optional unrest
ricted double screenX, | 176 [Default=Undefined] optional unrest
ricted double screenX, |
177 [Default=Undefined] optional unrest
ricted double screenY, | 177 [Default=Undefined] optional unrest
ricted double screenY, |
178 [Default=Undefined] optional unrest
ricted double webkitRadiusX, | 178 [Default=Undefined] optional unrest
ricted double webkitRadiusX, |
179 [Default=Undefined] optional unrest
ricted double webkitRadiusY, | 179 [Default=Undefined] optional unrest
ricted double webkitRadiusY, |
180 [Default=Undefined] optional unrest
ricted float webkitRotationAngle, | 180 [Default=Undefined] optional unrest
ricted float webkitRotationAngle, |
181 [Default=Undefined] optional unrest
ricted float webkitForce); | 181 [Default=Undefined] optional unrest
ricted float webkitForce, |
| 182 [Default=Undefined] optional unrest
ricted float tilt, |
| 183 [Default=Undefined] optional unrest
ricted float tiltDirection); |
182 [RuntimeEnabled=Touch] TouchList createTouchList(Touch... touches); | 184 [RuntimeEnabled=Touch] TouchList createTouchList(Touch... touches); |
183 | 185 |
184 // FIXME: The spec doesn't define these event handler attributes. | 186 // FIXME: The spec doesn't define these event handler attributes. |
185 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart; | 187 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart; |
186 [RuntimeEnabled=Touch] attribute EventHandler ontouchend; | 188 [RuntimeEnabled=Touch] attribute EventHandler ontouchend; |
187 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove; | 189 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove; |
188 [RuntimeEnabled=Touch] attribute EventHandler ontouchcancel; | 190 [RuntimeEnabled=Touch] attribute EventHandler ontouchcancel; |
189 | 191 |
190 // Custom Elements | 192 // Custom Elements |
191 // http://w3c.github.io/webcomponents/spec/custom/#extensions-to-document-in
terface-to-register | 193 // http://w3c.github.io/webcomponents/spec/custom/#extensions-to-document-in
terface-to-register |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
224 attribute EventHandler onsearch; | 226 attribute EventHandler onsearch; |
225 [RuntimeEnabled=ExperimentalContentSecurityPolicyFeatures] attribute EventHa
ndler onsecuritypolicyviolation; | 227 [RuntimeEnabled=ExperimentalContentSecurityPolicyFeatures] attribute EventHa
ndler onsecuritypolicyviolation; |
226 attribute EventHandler onselectionchange; | 228 attribute EventHandler onselectionchange; |
227 attribute EventHandler onselectstart; | 229 attribute EventHandler onselectstart; |
228 attribute EventHandler onwheel; | 230 attribute EventHandler onwheel; |
229 }; | 231 }; |
230 | 232 |
231 Document implements GlobalEventHandlers; | 233 Document implements GlobalEventHandlers; |
232 Document implements ParentNode; | 234 Document implements ParentNode; |
233 Document implements NonElementParentNode; | 235 Document implements NonElementParentNode; |
OLD | NEW |