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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 HTMLCollection getElementsByClassName(DOMString classNames); | 58 HTMLCollection getElementsByClassName(DOMString classNames); |
59 | 59 |
60 // DOM Parsing and Serialization | 60 // DOM Parsing and Serialization |
61 // https://dvcs.w3.org/hg/innerhtml/raw-file/tip/index.html#extensions-to-th
e-element-interface | 61 // https://dvcs.w3.org/hg/innerhtml/raw-file/tip/index.html#extensions-to-th
e-element-interface |
62 [TreatNullAs=NullString, CustomElementCallbacks, RaisesException=Setter, Exp
oseJSAccessors] attribute DOMString innerHTML; | 62 [TreatNullAs=NullString, CustomElementCallbacks, RaisesException=Setter, Exp
oseJSAccessors] attribute DOMString innerHTML; |
63 [TreatNullAs=NullString, CustomElementCallbacks, RaisesException=Setter] att
ribute DOMString outerHTML; | 63 [TreatNullAs=NullString, CustomElementCallbacks, RaisesException=Setter] att
ribute DOMString outerHTML; |
64 [CustomElementCallbacks, RaisesException, MeasureAs=InsertAdjacentHTML] void
insertAdjacentHTML(DOMString position, DOMString text); | 64 [CustomElementCallbacks, RaisesException, MeasureAs=InsertAdjacentHTML] void
insertAdjacentHTML(DOMString position, DOMString text); |
65 | 65 |
66 // Shadow DOM | 66 // Shadow DOM |
67 // http://w3c.github.io/webcomponents/spec/shadow/#extensions-to-element-int
erface | 67 // http://w3c.github.io/webcomponents/spec/shadow/#extensions-to-element-int
erface |
68 [RaisesException, MeasureAs=ElementCreateShadowRoot] ShadowRoot createShadow
Root(); | 68 [RaisesException, CallWith=ScriptState, MeasureAs=ElementCreateShadowRoot] S
hadowRoot createShadowRoot(); |
69 NodeList getDestinationInsertionPoints(); | 69 NodeList getDestinationInsertionPoints(); |
70 [PerWorldBindings] readonly attribute ShadowRoot? shadowRoot; | 70 [PerWorldBindings] readonly attribute ShadowRoot? shadowRoot; |
71 | 71 |
72 // Pointer Lock | 72 // Pointer Lock |
73 // https://dvcs.w3.org/hg/pointerlock/raw-file/default/index.html#extensions
-to-the-element-interface | 73 // https://dvcs.w3.org/hg/pointerlock/raw-file/default/index.html#extensions
-to-the-element-interface |
74 [MeasureAs=ElementRequestPointerLock] void requestPointerLock(); | 74 [MeasureAs=ElementRequestPointerLock] void requestPointerLock(); |
75 | 75 |
76 // CSSOM View Module | 76 // CSSOM View Module |
77 // http://dev.w3.org/csswg/cssom-view/#extension-to-the-element-interface | 77 // http://dev.w3.org/csswg/cssom-view/#extension-to-the-element-interface |
78 // FIXME: getClientRect() and getBoundingClientRect() should | 78 // FIXME: getClientRect() and getBoundingClientRect() should |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
142 [RuntimeEnabled=Touch] attribute EventHandler ontouchcancel; | 142 [RuntimeEnabled=Touch] attribute EventHandler ontouchcancel; |
143 [RuntimeEnabled=Touch] attribute EventHandler ontouchend; | 143 [RuntimeEnabled=Touch] attribute EventHandler ontouchend; |
144 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove; | 144 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove; |
145 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart; | 145 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart; |
146 attribute EventHandler onwheel; | 146 attribute EventHandler onwheel; |
147 }; | 147 }; |
148 | 148 |
149 Element implements ParentNode; | 149 Element implements ParentNode; |
150 Element implements ChildNode; | 150 Element implements ChildNode; |
151 Element implements NonDocumentTypeChildNode; | 151 Element implements NonDocumentTypeChildNode; |
OLD | NEW |