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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 | 105 |
106 [PerWorldBindings] readonly attribute DOMStringMap dataset; | 106 [PerWorldBindings] readonly attribute DOMStringMap dataset; |
107 | 107 |
108 // WebKit extension | 108 // WebKit extension |
109 [RaisesException, ImplementedAs=matches, MeasureAs=ElementPrefixedMatchesSel
ector] boolean webkitMatchesSelector(DOMString selectors); | 109 [RaisesException, ImplementedAs=matches, MeasureAs=ElementPrefixedMatchesSel
ector] boolean webkitMatchesSelector(DOMString selectors); |
110 | 110 |
111 // Shadow DOM API | 111 // Shadow DOM API |
112 [RaisesException, MeasureAs=ElementCreateShadowRoot] ShadowRoot createShadow
Root(); | 112 [RaisesException, MeasureAs=ElementCreateShadowRoot] ShadowRoot createShadow
Root(); |
113 [PerWorldBindings] readonly attribute ShadowRoot shadowRoot; | 113 [PerWorldBindings] readonly attribute ShadowRoot shadowRoot; |
114 NodeList getDestinationInsertionPoints(); | 114 NodeList getDestinationInsertionPoints(); |
| 115 [RuntimeEnabled=IsTabStopAttribute] attribute boolean isTabStop; |
115 | 116 |
116 // CSSOM View Module API | 117 // CSSOM View Module API |
117 ClientRectList getClientRects(); | 118 ClientRectList getClientRects(); |
118 ClientRect getBoundingClientRect(); | 119 ClientRect getBoundingClientRect(); |
119 | 120 |
120 [MeasureAs=ElementRequestPointerLock] void requestPointerLock(); | 121 [MeasureAs=ElementRequestPointerLock] void requestPointerLock(); |
121 | 122 |
122 // Experimental accessibility API | 123 // Experimental accessibility API |
123 [RuntimeEnabled=ComputedAccessibilityInfo] readonly attribute DOMString? com
putedRole; | 124 [RuntimeEnabled=ComputedAccessibilityInfo] readonly attribute DOMString? com
putedRole; |
124 [RuntimeEnabled=ComputedAccessibilityInfo] readonly attribute DOMString? com
putedName; | 125 [RuntimeEnabled=ComputedAccessibilityInfo] readonly attribute DOMString? com
putedName; |
(...skipping 10 matching lines...) Expand all Loading... |
135 [RuntimeEnabled=Touch] attribute EventHandler ontouchcancel; | 136 [RuntimeEnabled=Touch] attribute EventHandler ontouchcancel; |
136 [RuntimeEnabled=Touch] attribute EventHandler ontouchend; | 137 [RuntimeEnabled=Touch] attribute EventHandler ontouchend; |
137 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove; | 138 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove; |
138 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart; | 139 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart; |
139 attribute EventHandler onwheel; | 140 attribute EventHandler onwheel; |
140 }; | 141 }; |
141 | 142 |
142 Element implements ParentNode; | 143 Element implements ParentNode; |
143 Element implements ChildNode; | 144 Element implements ChildNode; |
144 Element implements NonDocumentTypeChildNode; | 145 Element implements NonDocumentTypeChildNode; |
OLD | NEW |