| 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 | 107 |
| 108 // Shadow DOM API | 108 // Shadow DOM API |
| 109 [RaisesException, MeasureAs=ElementCreateShadowRoot] ShadowRoot createShadow
Root(); | 109 [RaisesException, MeasureAs=ElementCreateShadowRoot] ShadowRoot createShadow
Root(); |
| 110 [PerWorldBindings] readonly attribute ShadowRoot shadowRoot; | 110 [PerWorldBindings] readonly attribute ShadowRoot shadowRoot; |
| 111 NodeList getDestinationInsertionPoints(); | 111 NodeList getDestinationInsertionPoints(); |
| 112 | 112 |
| 113 // CSSOM View Module API | 113 // CSSOM View Module API |
| 114 ClientRectList getClientRects(); | 114 ClientRectList getClientRects(); |
| 115 ClientRect getBoundingClientRect(); | 115 ClientRect getBoundingClientRect(); |
| 116 | 116 |
| 117 // Mozilla version | |
| 118 const unsigned short ALLOW_KEYBOARD_INPUT = 1; | |
| 119 [LogActivity, LogAllWorlds, MeasureAs=PrefixedElementRequestFullScreen] void
webkitRequestFullScreen([Default=Undefined] optional unsigned short flags); | |
| 120 | |
| 121 // W3C version | |
| 122 [LogActivity, LogAllWorlds, MeasureAs=PrefixedElementRequestFullscreen] void
webkitRequestFullscreen(); | |
| 123 | |
| 124 [MeasureAs=ElementRequestPointerLock] void requestPointerLock(); | 117 [MeasureAs=ElementRequestPointerLock] void requestPointerLock(); |
| 125 | 118 |
| 126 // Event handler attributes | 119 // Event handler attributes |
| 127 attribute EventHandler onbeforecopy; | 120 attribute EventHandler onbeforecopy; |
| 128 attribute EventHandler onbeforecut; | 121 attribute EventHandler onbeforecut; |
| 129 attribute EventHandler onbeforepaste; | 122 attribute EventHandler onbeforepaste; |
| 130 attribute EventHandler oncopy; | 123 attribute EventHandler oncopy; |
| 131 attribute EventHandler oncut; | 124 attribute EventHandler oncut; |
| 132 attribute EventHandler onpaste; | 125 attribute EventHandler onpaste; |
| 133 attribute EventHandler onsearch; | 126 attribute EventHandler onsearch; |
| 134 attribute EventHandler onselectstart; | 127 attribute EventHandler onselectstart; |
| 135 [RuntimeEnabled=Touch] attribute EventHandler ontouchcancel; | 128 [RuntimeEnabled=Touch] attribute EventHandler ontouchcancel; |
| 136 [RuntimeEnabled=Touch] attribute EventHandler ontouchend; | 129 [RuntimeEnabled=Touch] attribute EventHandler ontouchend; |
| 137 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove; | 130 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove; |
| 138 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart; | 131 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart; |
| 139 attribute EventHandler onwebkitfullscreenchange; | |
| 140 attribute EventHandler onwebkitfullscreenerror; | |
| 141 attribute EventHandler onwheel; | 132 attribute EventHandler onwheel; |
| 142 }; | 133 }; |
| 143 | 134 |
| 144 Element implements ParentNode; | 135 Element implements ParentNode; |
| 145 Element implements ChildNode; | 136 Element implements ChildNode; |
| OLD | NEW |