| 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 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 // FIXME: clear(), captureEvents(), releaseEvents() and all are on HTMLDocum
ent. | 142 // FIXME: clear(), captureEvents(), releaseEvents() and all are on HTMLDocum
ent. |
| 143 | 143 |
| 144 // CSS Object Model (CSSOM) | 144 // CSS Object Model (CSSOM) |
| 145 // https://dev.w3.org/csswg/cssom/#extensions-to-the-document-interface | 145 // https://dev.w3.org/csswg/cssom/#extensions-to-the-document-interface |
| 146 attribute DOMString? selectedStylesheetSet; | 146 attribute DOMString? selectedStylesheetSet; |
| 147 readonly attribute DOMString? preferredStylesheetSet; | 147 readonly attribute DOMString? preferredStylesheetSet; |
| 148 | 148 |
| 149 readonly attribute Element? scrollingElement; | 149 readonly attribute Element? scrollingElement; |
| 150 | 150 |
| 151 // Pointer Lock | 151 // Pointer Lock |
| 152 // https://dvcs.w3.org/hg/pointerlock/raw-file/default/index.html#extensions
-to-the-document-interface | 152 // https://w3c.github.io/pointerlock/#extensions-to-the-document-interface |
| 153 attribute EventHandler onpointerlockchange; | 153 attribute EventHandler onpointerlockchange; |
| 154 attribute EventHandler onpointerlockerror; | 154 attribute EventHandler onpointerlockerror; |
| 155 [MeasureAs=DocumentExitPointerLock] void exitPointerLock(); | 155 [MeasureAs=DocumentExitPointerLock] void exitPointerLock(); |
| 156 | 156 |
| 157 // Touch Events | 157 // Touch Events |
| 158 // https://w3c.github.io/touch-events/#extensions-to-the-document-interface | 158 // https://w3c.github.io/touch-events/#extensions-to-the-document-interface |
| 159 // FIXME: The arguments should not be optional. | 159 // FIXME: The arguments should not be optional. |
| 160 [RuntimeEnabled=TouchEventFeatureDetection, Measure, LegacyInterfaceTypeChec
king, Custom=CallPrologue] | 160 [RuntimeEnabled=TouchEventFeatureDetection, Measure, LegacyInterfaceTypeChec
king, Custom=CallPrologue] |
| 161 Touch createTouch([Default=Undefined] optional Window window, | 161 Touch createTouch([Default=Undefined] optional Window window, |
| 162 [Default=Undefined] optional EventTarget target, | 162 [Default=Undefined] optional EventTarget target, |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 [RuntimeEnabled=ExperimentalContentSecurityPolicyFeatures] attribute EventHa
ndler onsecuritypolicyviolation; | 209 [RuntimeEnabled=ExperimentalContentSecurityPolicyFeatures] attribute EventHa
ndler onsecuritypolicyviolation; |
| 210 attribute EventHandler onselectionchange; | 210 attribute EventHandler onselectionchange; |
| 211 attribute EventHandler onselectstart; | 211 attribute EventHandler onselectstart; |
| 212 attribute EventHandler onwheel; | 212 attribute EventHandler onwheel; |
| 213 }; | 213 }; |
| 214 | 214 |
| 215 Document implements GlobalEventHandlers; | 215 Document implements GlobalEventHandlers; |
| 216 Document implements ParentNode; | 216 Document implements ParentNode; |
| 217 Document implements NonElementParentNode; | 217 Document implements NonElementParentNode; |
| 218 Document implements DocumentOrShadowRoot; | 218 Document implements DocumentOrShadowRoot; |
| OLD | NEW |