| 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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 [RaisesException, MeasureAs=ElementCreateShadowRoot] ShadowRoot createShadow
Root(); | 107 [RaisesException, MeasureAs=ElementCreateShadowRoot] ShadowRoot createShadow
Root(); |
| 108 [PerWorldBindings] readonly attribute ShadowRoot shadowRoot; | 108 [PerWorldBindings] readonly attribute ShadowRoot shadowRoot; |
| 109 NodeList getDestinationInsertionPoints(); | 109 NodeList getDestinationInsertionPoints(); |
| 110 | 110 |
| 111 // CSSOM View Module API | 111 // CSSOM View Module API |
| 112 ClientRectList getClientRects(); | 112 ClientRectList getClientRects(); |
| 113 ClientRect getBoundingClientRect(); | 113 ClientRect getBoundingClientRect(); |
| 114 | 114 |
| 115 [MeasureAs=ElementRequestPointerLock] void requestPointerLock(); | 115 [MeasureAs=ElementRequestPointerLock] void requestPointerLock(); |
| 116 | 116 |
| 117 [RaisesException] DOMString bindAnimatedProperty(DOMString propertyName); |
| 118 [RaisesException] void unbindAnimatedProperty(DOMString propertyName); |
| 119 |
| 117 // Event handler attributes | 120 // Event handler attributes |
| 118 attribute EventHandler onbeforecopy; | 121 attribute EventHandler onbeforecopy; |
| 119 attribute EventHandler onbeforecut; | 122 attribute EventHandler onbeforecut; |
| 120 attribute EventHandler onbeforepaste; | 123 attribute EventHandler onbeforepaste; |
| 121 attribute EventHandler oncopy; | 124 attribute EventHandler oncopy; |
| 122 attribute EventHandler oncut; | 125 attribute EventHandler oncut; |
| 123 attribute EventHandler onpaste; | 126 attribute EventHandler onpaste; |
| 124 attribute EventHandler onsearch; | 127 attribute EventHandler onsearch; |
| 125 attribute EventHandler onselectstart; | 128 attribute EventHandler onselectstart; |
| 126 [RuntimeEnabled=Touch] attribute EventHandler ontouchcancel; | 129 [RuntimeEnabled=Touch] attribute EventHandler ontouchcancel; |
| 127 [RuntimeEnabled=Touch] attribute EventHandler ontouchend; | 130 [RuntimeEnabled=Touch] attribute EventHandler ontouchend; |
| 128 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove; | 131 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove; |
| 129 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart; | 132 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart; |
| 130 attribute EventHandler onwheel; | 133 attribute EventHandler onwheel; |
| 131 }; | 134 }; |
| 132 | 135 |
| 133 Element implements ParentNode; | 136 Element implements ParentNode; |
| 134 Element implements ChildNode; | 137 Element implements ChildNode; |
| OLD | NEW |