Chromium Code Reviews| 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 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 158 Selection? getSelection(); | 158 Selection? getSelection(); |
| 159 | 159 |
| 160 // Pointer Lock | 160 // Pointer Lock |
| 161 // https://dvcs.w3.org/hg/pointerlock/raw-file/default/index.html#extensions -to-the-document-interface | 161 // https://dvcs.w3.org/hg/pointerlock/raw-file/default/index.html#extensions -to-the-document-interface |
| 162 attribute EventHandler onpointerlockchange; | 162 attribute EventHandler onpointerlockchange; |
| 163 attribute EventHandler onpointerlockerror; | 163 attribute EventHandler onpointerlockerror; |
| 164 [MeasureAs=DocumentPointerLockElement] readonly attribute Element? pointerLo ckElement; | 164 [MeasureAs=DocumentPointerLockElement] readonly attribute Element? pointerLo ckElement; |
| 165 [MeasureAs=DocumentExitPointerLock] void exitPointerLock(); | 165 [MeasureAs=DocumentExitPointerLock] void exitPointerLock(); |
| 166 | 166 |
| 167 // Touch Events | 167 // Touch Events |
| 168 // http://www.w3.org/TR/touch-events/#extensions-to-the-document-interface | 168 // http://rawgit.com/w3c/touch-events/v1-errata/touchevents.html#extensions- to-the-document-interface |
| 169 // FIXME: The arguments should not be optional. | 169 // FIXME: The arguments should not be optional. |
| 170 // FIXME: The webkit-prefixed arguments are not in the spec. | 170 // FIXME: The webkit-prefixed arguments are not in the spec. |
|
Rick Byers
2015/03/06 13:56:55
If you want, you can remove the webkit prefixes on
philipj_slow
2015/03/06 15:33:58
Actually the extension spec doesn't mention these
| |
| 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, |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 224 attribute EventHandler onsearch; | 224 attribute EventHandler onsearch; |
| 225 [RuntimeEnabled=ExperimentalContentSecurityPolicyFeatures] attribute EventHa ndler onsecuritypolicyviolation; | 225 [RuntimeEnabled=ExperimentalContentSecurityPolicyFeatures] attribute EventHa ndler onsecuritypolicyviolation; |
| 226 attribute EventHandler onselectionchange; | 226 attribute EventHandler onselectionchange; |
| 227 attribute EventHandler onselectstart; | 227 attribute EventHandler onselectstart; |
| 228 attribute EventHandler onwheel; | 228 attribute EventHandler onwheel; |
| 229 }; | 229 }; |
| 230 | 230 |
| 231 Document implements GlobalEventHandlers; | 231 Document implements GlobalEventHandlers; |
| 232 Document implements ParentNode; | 232 Document implements ParentNode; |
| 233 Document implements NonElementParentNode; | 233 Document implements NonElementParentNode; |
| OLD | NEW |