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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
100 [Reflect=class] attribute DOMString className; | 100 [Reflect=class] attribute DOMString className; |
101 [PerWorldBindings] readonly attribute DOMTokenList classList; | 101 [PerWorldBindings] readonly attribute DOMTokenList classList; |
102 | 102 |
103 [PerWorldBindings] readonly attribute DOMStringMap dataset; | 103 [PerWorldBindings] readonly attribute DOMStringMap dataset; |
104 | 104 |
105 // WebKit extension | 105 // WebKit extension |
106 [RaisesException, ImplementedAs=matches, MeasureAs=ElementPrefixedMatchesSel ector] boolean webkitMatchesSelector(DOMString selectors); | 106 [RaisesException, ImplementedAs=matches, MeasureAs=ElementPrefixedMatchesSel ector] boolean webkitMatchesSelector(DOMString selectors); |
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 [RaisesException, OnlyExposedToPrivateScript] createUserAgentShadowRoot(); | |
hajimehoshi
2014/08/11 09:32:51
TODO: This change and the changes around HTMLVideo
| |
110 [PerWorldBindings] readonly attribute ShadowRoot shadowRoot; | 111 [PerWorldBindings] readonly attribute ShadowRoot shadowRoot; |
111 NodeList getDestinationInsertionPoints(); | 112 NodeList getDestinationInsertionPoints(); |
112 | 113 |
113 // CSSOM View Module API | 114 // CSSOM View Module API |
114 ClientRectList getClientRects(); | 115 ClientRectList getClientRects(); |
115 ClientRect getBoundingClientRect(); | 116 ClientRect getBoundingClientRect(); |
116 | 117 |
117 // Mozilla version | 118 // Mozilla version |
118 const unsigned short ALLOW_KEYBOARD_INPUT = 1; | 119 const unsigned short ALLOW_KEYBOARD_INPUT = 1; |
119 [LogActivity, LogAllWorlds, MeasureAs=PrefixedElementRequestFullScreen] void webkitRequestFullScreen([Default=Undefined] optional unsigned short flags); | 120 [LogActivity, LogAllWorlds, MeasureAs=PrefixedElementRequestFullScreen] void webkitRequestFullScreen([Default=Undefined] optional unsigned short flags); |
(...skipping 16 matching lines...) Expand all Loading... | |
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 onwebkitfullscreenchange; | 140 attribute EventHandler onwebkitfullscreenchange; |
140 attribute EventHandler onwebkitfullscreenerror; | 141 attribute EventHandler onwebkitfullscreenerror; |
141 attribute EventHandler onwheel; | 142 attribute EventHandler onwheel; |
142 }; | 143 }; |
143 | 144 |
144 Element implements ParentNode; | 145 Element implements ParentNode; |
145 Element implements ChildNode; | 146 Element implements ChildNode; |
OLD | NEW |