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