Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1189)

Side by Side Diff: core/dom/Element.idl

Issue 23014006: Roll IDL to multivm@1350 (Closed) Base URL: https://dart.googlecode.com/svn/third_party/WebCore
Patch Set: Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « core/dom/DocumentFragment.idl ('k') | core/dom/ErrorEvent.idl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details. 13 * Library General Public License for more details.
14 * 14 *
15 * You should have received a copy of the GNU Library General Public License 15 * You should have received a copy of the GNU Library General Public License
16 * along with this library; see the file COPYING.LIB. If not, write to 16 * along with this library; see the file COPYING.LIB. If not, write to
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA. 18 * Boston, MA 02110-1301, USA.
19 */ 19 */
20 20
21 [ 21 [
22 CustomToV8 22 CustomToV8
23 ] interface Element : Node { 23 ] interface Element : Node {
24 24
25 // DOM Level 1 Core 25 // DOM Level 1 Core
26 26
27 [TreatReturnedNullStringAs=Null, PerWorldBindings] readonly attribute DOMStr ing tagName; 27 [TreatReturnedNullStringAs=Null, PerWorldBindings] readonly attribute DOMStr ing tagName;
28 28
29 [TreatReturnedNullStringAs=Null] DOMString getAttribute([Default=Undefined] optional DOMString name); 29 [TreatReturnedNullStringAs=Null] DOMString getAttribute([Default=Undefined] optional DOMString name);
30 [RaisesException, DeliverCustomElementCallbacks] void setAttribute([Default= Undefined] optional DOMString name, 30 [RaisesException, CustomElementCallbacks=Enable] void setAttribute([Default= Undefined] optional DOMString name,
31 [Default=Undefined] optional DOMString valu e); 31 [Default=Undefined] optional DOMString valu e);
32 [DeliverCustomElementCallbacks] void removeAttribute([Default=Undefined] opt ional DOMString name); 32 [CustomElementCallbacks=Enable] void removeAttribute([Default=Undefined] opt ional DOMString name);
33 Attr getAttributeNode([Default=Undefined] optional DOMString name); 33 Attr getAttributeNode([Default=Undefined] optional DOMString name);
34 [RaisesException, DeliverCustomElementCallbacks] Attr setAttributeNode([Defa ult=Undefined, StrictTypeChecking] optional Attr newAttr); 34 [RaisesException, CustomElementCallbacks=Enable] Attr setAttributeNode([Defa ult=Undefined, StrictTypeChecking] optional Attr newAttr);
35 [RaisesException, DeliverCustomElementCallbacks] Attr removeAttributeNode([D efault=Undefined, StrictTypeChecking] optional Attr oldAttr); 35 [RaisesException, CustomElementCallbacks=Enable] Attr removeAttributeNode([D efault=Undefined, StrictTypeChecking] optional Attr oldAttr);
36 [PerWorldBindings] NodeList getElementsByTagName([Default=Undefined] optiona l DOMString name); 36 [PerWorldBindings] NodeList getElementsByTagName([Default=Undefined] optiona l DOMString name);
37 37
38 // For ObjC this is defined on Node for legacy support. 38 // For ObjC this is defined on Node for legacy support.
39 [PerWorldBindings] readonly attribute NamedNodeMap attributes; 39 [PerWorldBindings] readonly attribute NamedNodeMap attributes;
40 boolean hasAttributes(); 40 boolean hasAttributes();
41 41
42 // DOM Level 2 Core 42 // DOM Level 2 Core
43 43
44 DOMString getAttributeNS([TreatNullAs=NullString,Default=Undefined] optiona l DOMString namespaceURI, 44 DOMString getAttributeNS([TreatNullAs=NullString,Default=Undefined] optiona l DOMString namespaceURI,
45 [Default=Undefined] optional DOMStri ng localName); 45 [Default=Undefined] optional DOMStri ng localName);
46 [RaisesException, DeliverCustomElementCallbacks] void setAttributeNS([Treat NullAs=NullString,Default=Undefined] optional DOMString namespaceURI, 46 [RaisesException, CustomElementCallbacks=Enable] void setAttributeNS([Treat NullAs=NullString,Default=Undefined] optional DOMString namespaceURI,
47 [Default=Undefined] optional DOMString qu alifiedName, 47 [Default=Undefined] optional DOMString qu alifiedName,
48 [Default=Undefined] optional DOMString va lue); 48 [Default=Undefined] optional DOMString va lue);
49 [DeliverCustomElementCallbacks] void removeAttributeNS([TreatNullAs=NullStr ing] DOMString namespaceURI, 49 [CustomElementCallbacks=Enable] void removeAttributeNS([TreatNullAs=NullStr ing] DOMString namespaceURI,
50 DOMString localName); 50 DOMString localName);
51 NodeList getElementsByTagNameNS([TreatNullAs=NullString,Default=Undefined] optional DOMString namespaceURI, 51 NodeList getElementsByTagNameNS([TreatNullAs=NullString,Default=Undefined] optional DOMString namespaceURI,
52 [Default=Undefined] optional DOMString localName); 52 [Default=Undefined] optional DOMString localName);
53 Attr getAttributeNodeNS([TreatNullAs=NullString,Default=Undefined] optional DOMString namespaceURI, 53 Attr getAttributeNodeNS([TreatNullAs=NullString,Default=Undefined] optional DOMString namespaceURI,
54 [Default=Undefined] optional DOMStrin g localName); 54 [Default=Undefined] optional DOMStrin g localName);
55 [RaisesException] Attr setAttributeNodeNS([Default=Undefined, StrictTypeChec king] optional Attr newAttr); 55 [RaisesException, CustomElementCallbacks=Enable] Attr setAttributeNodeNS([De fault=Undefined, StrictTypeChecking] optional Attr newAttr);
56 boolean hasAttribute(DOMString name); 56 boolean hasAttribute(DOMString name);
57 boolean hasAttributeNS([TreatNullAs=NullString,Default=Undefined] optional DOMString namespaceURI, 57 boolean hasAttributeNS([TreatNullAs=NullString,Default=Undefined] optional DOMString namespaceURI,
58 [Default=Undefined] optional DOMString localName); 58 [Default=Undefined] optional DOMString localName);
59 59
60 [PerWorldBindings] readonly attribute CSSStyleDeclaration style; 60 [PerWorldBindings] readonly attribute CSSStyleDeclaration style;
61 61
62 // DOM4
63 // iht.com relies on id returning the empty string when no id is present.
64 // Other browsers do this as well. So we don't convert null to JS null.
65 [Reflect] attribute DOMString id;
66
62 // Common extensions 67 // Common extensions
63 68
64 [PerWorldBindings] readonly attribute long offsetLeft; 69 [PerWorldBindings] readonly attribute long offsetLeft;
65 [PerWorldBindings] readonly attribute long offsetTop; 70 [PerWorldBindings] readonly attribute long offsetTop;
66 [PerWorldBindings] readonly attribute long offsetWidth; 71 [PerWorldBindings] readonly attribute long offsetWidth;
67 [PerWorldBindings] readonly attribute long offsetHeight; 72 [PerWorldBindings] readonly attribute long offsetHeight;
68 [ImplementedAs=bindingsOffsetParent, PerWorldBindings] readonly attribute El ement offsetParent; 73 [ImplementedAs=bindingsOffsetParent, PerWorldBindings] readonly attribute El ement offsetParent;
69 [PerWorldBindings] readonly attribute long clientLeft; 74 [PerWorldBindings] readonly attribute long clientLeft;
70 [PerWorldBindings] readonly attribute long clientTop; 75 [PerWorldBindings] readonly attribute long clientTop;
71 [PerWorldBindings] readonly attribute long clientWidth; 76 [PerWorldBindings] readonly attribute long clientWidth;
(...skipping 25 matching lines...) Expand all
97 [RaisesException] Element querySelector(DOMString selectors); 102 [RaisesException] Element querySelector(DOMString selectors);
98 [RaisesException] NodeList querySelectorAll(DOMString selectors); 103 [RaisesException] NodeList querySelectorAll(DOMString selectors);
99 104
100 // WebKit extension, pending specification. 105 // WebKit extension, pending specification.
101 [RaisesException] boolean webkitMatchesSelector([Default=Undefined] optional DOMString selectors); 106 [RaisesException] boolean webkitMatchesSelector([Default=Undefined] optional DOMString selectors);
102 107
103 // Shadow DOM API 108 // Shadow DOM API
104 [EnabledAtRuntime=ShadowDOM, Reflect, PerWorldBindings] attribute DOMString pseudo; 109 [EnabledAtRuntime=ShadowDOM, Reflect, PerWorldBindings] attribute DOMString pseudo;
105 [EnabledAtRuntime=ShadowDOM, RaisesException] ShadowRoot createShadowRoot(); 110 [EnabledAtRuntime=ShadowDOM, RaisesException] ShadowRoot createShadowRoot();
106 [EnabledAtRuntime=ShadowDOM, PerWorldBindings] readonly attribute ShadowRoot shadowRoot; 111 [EnabledAtRuntime=ShadowDOM, PerWorldBindings] readonly attribute ShadowRoot shadowRoot;
112 [EnabledAtRuntime=ShadowDOM, PerWorldBindings] NodeList getDestinationInsert ionPoints();
107 113
108 // To-be-deprecated prefixed Shadow DOM API 114 // To-be-deprecated prefixed Shadow DOM API
109 [Reflect=pseudo, ImplementedAs=pseudo, PerWorldBindings, MeasureAs=ShadowDOM PrefixedPseudo] attribute DOMString webkitPseudo; 115 [Reflect=pseudo, ImplementedAs=pseudo, PerWorldBindings, MeasureAs=ShadowDOM PrefixedPseudo] attribute DOMString webkitPseudo;
110 [ImplementedAs=createShadowRoot, RaisesException, MeasureAs=ShadowDOMPrefixe dCreateShadowRoot] ShadowRoot webkitCreateShadowRoot(); 116 [ImplementedAs=createShadowRoot, RaisesException, MeasureAs=ShadowDOMPrefixe dCreateShadowRoot] ShadowRoot webkitCreateShadowRoot();
111 [ImplementedAs=shadowRoot, PerWorldBindings, MeasureAs=ShadowDOMPrefixedShad owRoot] readonly attribute ShadowRoot webkitShadowRoot; 117 [ImplementedAs=shadowRoot, PerWorldBindings, MeasureAs=ShadowDOMPrefixedShad owRoot] readonly attribute ShadowRoot webkitShadowRoot;
112 118
113 // CSSOM View Module API 119 // CSSOM View Module API
114 ClientRectList getClientRects(); 120 ClientRectList getClientRects();
115 ClientRect getBoundingClientRect(); 121 ClientRect getBoundingClientRect();
116 122
117 // Mozilla version 123 // Mozilla version
118 const unsigned short ALLOW_KEYBOARD_INPUT = 1; 124 const unsigned short ALLOW_KEYBOARD_INPUT = 1;
119 [EnabledAtRuntime=fullscreen] void webkitRequestFullScreen([Default=Undefine d] optional unsigned short flags); 125 [EnabledAtRuntime=fullscreen] void webkitRequestFullScreen([Default=Undefine d] optional unsigned short flags);
120 126
121 // W3C version 127 // W3C version
122 [EnabledAtRuntime=fullscreen] void webkitRequestFullscreen(); 128 [EnabledAtRuntime=fullscreen] void webkitRequestFullscreen();
123 129
124 void webkitRequestPointerLock(); 130 void webkitRequestPointerLock();
125 131
126 // CSS Regions API 132 // CSS Regions API
127 [EnabledAtRuntime=cssRegions, PerWorldBindings] readonly attribute DOMString webkitRegionOverset; 133 [EnabledAtRuntime=cssRegions, PerWorldBindings] readonly attribute DOMString webkitRegionOverset;
128 [EnabledAtRuntime=cssRegions] sequence<Range> webkitGetRegionFlowRanges(); 134 [EnabledAtRuntime=cssRegions] sequence<Range> webkitGetRegionFlowRanges();
129 135
130 // Event handler DOM attributes 136 // Event handler DOM attributes
131 [NotEnumerable, PerWorldBindings] attribute EventListener onabort; 137 [NotEnumerable, PerWorldBindings] attribute EventHandler onabort;
132 [NotEnumerable, PerWorldBindings] attribute EventListener onblur; 138 [NotEnumerable, PerWorldBindings] attribute EventHandler onblur;
133 [NotEnumerable, PerWorldBindings] attribute EventListener onchange; 139 [NotEnumerable, PerWorldBindings] attribute EventHandler onchange;
134 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventListener onclick; 140 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventHandler onclick;
135 [NotEnumerable, PerWorldBindings] attribute EventListener oncontextmenu; 141 [NotEnumerable, PerWorldBindings] attribute EventHandler oncontextmenu;
136 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventListener ondblclick; 142 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventHandler ondblclick;
137 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventListener ondrag; 143 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventHandler ondrag;
138 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventListener ondragend; 144 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventHandler ondragend;
139 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventListener ondragenter; 145 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventHandler ondragenter;
140 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventListener ondragleave; 146 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventHandler ondragleave;
141 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventListener ondragover; 147 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventHandler ondragover;
142 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventListener ondragstart; 148 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventHandler ondragstart;
143 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventListener ondrop; 149 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventHandler ondrop;
144 [NotEnumerable, PerWorldBindings] attribute EventListener onerror; 150 [NotEnumerable, PerWorldBindings] attribute EventHandler onerror;
145 [NotEnumerable, PerWorldBindings] attribute EventListener onfocus; 151 [NotEnumerable, PerWorldBindings] attribute EventHandler onfocus;
146 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventListener oninput; 152 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventHandler oninput;
147 [NotEnumerable, PerWorldBindings] attribute EventListener oninvalid; 153 [NotEnumerable, PerWorldBindings] attribute EventHandler oninvalid;
148 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventListener onkeydown; 154 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventHandler onkeydown;
149 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventListener onkeypress; 155 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventHandler onkeypress;
150 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventListener onkeyup; 156 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventHandler onkeyup;
151 [NotEnumerable, PerWorldBindings] attribute EventListener onload; 157 [NotEnumerable, PerWorldBindings] attribute EventHandler onload;
152 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventListener onmousedown; 158 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventHandler onmousedown;
153 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventListener onmouseenter; 159 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventHandler onmouseenter;
154 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventListener onmouseleave; 160 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventHandler onmouseleave;
155 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventListener onmousemove; 161 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventHandler onmousemove;
156 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventListener onmouseout; 162 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventHandler onmouseout;
157 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventListener onmouseover; 163 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventHandler onmouseover;
158 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventListener onmouseup; 164 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventHandler onmouseup;
159 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventListener onmousewheel; 165 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventHandler onmousewheel;
160 [NotEnumerable, PerWorldBindings] attribute EventListener onscroll; 166 [NotEnumerable, PerWorldBindings] attribute EventHandler onscroll;
161 [NotEnumerable, PerWorldBindings] attribute EventListener onselect; 167 [NotEnumerable, PerWorldBindings] attribute EventHandler onselect;
162 [NotEnumerable, PerWorldBindings] attribute EventListener onsubmit; 168 [NotEnumerable, PerWorldBindings] attribute EventHandler onsubmit;
163 169
164 // attribute [NotEnumerable] EventListener oncanplay; 170 // attribute [NotEnumerable] EventHandler oncanplay;
165 // attribute [NotEnumerable] EventListener oncanplaythrough; 171 // attribute [NotEnumerable] EventHandler oncanplaythrough;
166 // attribute [NotEnumerable] EventListener ondurationchange; 172 // attribute [NotEnumerable] EventHandler ondurationchange;
167 // attribute [NotEnumerable] EventListener onemptied; 173 // attribute [NotEnumerable] EventHandler onemptied;
168 // attribute [NotEnumerable] EventListener onended; 174 // attribute [NotEnumerable] EventHandler onended;
169 // attribute [NotEnumerable] EventListener onloadeddata; 175 // attribute [NotEnumerable] EventHandler onloadeddata;
170 // attribute [NotEnumerable] EventListener onloadedmetadata; 176 // attribute [NotEnumerable] EventHandler onloadedmetadata;
171 // attribute [NotEnumerable] EventListener onloadstart; 177 // attribute [NotEnumerable] EventHandler onloadstart;
172 // attribute [NotEnumerable] EventListener onpause; 178 // attribute [NotEnumerable] EventHandler onpause;
173 // attribute [NotEnumerable] EventListener onplay; 179 // attribute [NotEnumerable] EventHandler onplay;
174 // attribute [NotEnumerable] EventListener onplaying; 180 // attribute [NotEnumerable] EventHandler onplaying;
175 // attribute [NotEnumerable] EventListener onprogress; 181 // attribute [NotEnumerable] EventHandler onprogress;
176 // attribute [NotEnumerable] EventListener onratechange; 182 // attribute [NotEnumerable] EventHandler onratechange;
177 // attribute [NotEnumerable] EventListener onreadystatechange; 183 // attribute [NotEnumerable] EventHandler onreadystatechange;
178 // attribute [NotEnumerable] EventListener onseeked; 184 // attribute [NotEnumerable] EventHandler onseeked;
179 // attribute [NotEnumerable] EventListener onseeking; 185 // attribute [NotEnumerable] EventHandler onseeking;
180 // attribute [NotEnumerable] EventListener onshow; 186 // attribute [NotEnumerable] EventHandler onshow;
181 // attribute [NotEnumerable] EventListener onstalled; 187 // attribute [NotEnumerable] EventHandler onstalled;
182 // attribute [NotEnumerable] EventListener onsuspend; 188 // attribute [NotEnumerable] EventHandler onsuspend;
183 // attribute [NotEnumerable] EventListener ontimeupdate; 189 // attribute [NotEnumerable] EventHandler ontimeupdate;
184 // attribute [NotEnumerable] EventListener onvolumechange; 190 // attribute [NotEnumerable] EventHandler onvolumechange;
185 // attribute [NotEnumerable] EventListener onwaiting; 191 // attribute [NotEnumerable] EventHandler onwaiting;
186 192
187 // WebKit extensions 193 // WebKit extensions
188 [NotEnumerable, PerWorldBindings] attribute EventListener onbeforecut; 194 [NotEnumerable, PerWorldBindings] attribute EventHandler onbeforecut;
189 [NotEnumerable, PerWorldBindings] attribute EventListener oncut; 195 [NotEnumerable, PerWorldBindings] attribute EventHandler oncut;
190 [NotEnumerable, PerWorldBindings] attribute EventListener onbeforecopy; 196 [NotEnumerable, PerWorldBindings] attribute EventHandler onbeforecopy;
191 [NotEnumerable, PerWorldBindings] attribute EventListener oncopy; 197 [NotEnumerable, PerWorldBindings] attribute EventHandler oncopy;
192 [NotEnumerable, PerWorldBindings] attribute EventListener onbeforepaste; 198 [NotEnumerable, PerWorldBindings] attribute EventHandler onbeforepaste;
193 [NotEnumerable, PerWorldBindings] attribute EventListener onpaste; 199 [NotEnumerable, PerWorldBindings] attribute EventHandler onpaste;
194 [NotEnumerable, PerWorldBindings] attribute EventListener onreset; 200 [NotEnumerable, PerWorldBindings] attribute EventHandler onreset;
195 [NotEnumerable, PerWorldBindings] attribute EventListener onsearch; 201 [NotEnumerable, PerWorldBindings] attribute EventHandler onsearch;
196 [NotEnumerable, PerWorldBindings] attribute EventListener onselectstart; 202 [NotEnumerable, PerWorldBindings] attribute EventHandler onselectstart;
197 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis tener ontouchstart; 203 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventHan dler ontouchstart;
198 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis tener ontouchmove; 204 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventHan dler ontouchmove;
199 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis tener ontouchend; 205 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventHan dler ontouchend;
200 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventLis tener ontouchcancel; 206 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventHan dler ontouchcancel;
201 [NotEnumerable, PerWorldBindings] attribute EventListener onwebkitfullscreen change; 207 [NotEnumerable, PerWorldBindings] attribute EventHandler onwebkitfullscreenc hange;
202 [NotEnumerable, PerWorldBindings] attribute EventListener onwebkitfullscreen error; 208 [NotEnumerable, PerWorldBindings] attribute EventHandler onwebkitfullscreene rror;
203 }; 209 };
204 210
205 Element implements ParentNode; 211 Element implements ParentNode;
206 Element implements ChildNode; 212 Element implements ChildNode;
207
OLDNEW
« no previous file with comments | « core/dom/DocumentFragment.idl ('k') | core/dom/ErrorEvent.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698