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

Side by Side Diff: third_party/WebCore/dom/Element.idl

Issue 11000007: Revert "Roll IDL to multivm@910" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 2 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 | « third_party/WebCore/dom/DocumentType.idl ('k') | third_party/WebCore/dom/MessagePort.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,
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 boolean webkitMatchesSelector(in [Optional=DefaultIsUndefined] DOMString selectors) 113 boolean webkitMatchesSelector(in [Optional=DefaultIsUndefined] DOMString selectors)
114 raises(DOMException); 114 raises(DOMException);
115 115
116 // ElementTraversal API 116 // ElementTraversal API
117 readonly attribute Element firstElementChild; 117 readonly attribute Element firstElementChild;
118 readonly attribute Element lastElementChild; 118 readonly attribute Element lastElementChild;
119 readonly attribute Element previousElementSibling; 119 readonly attribute Element previousElementSibling;
120 readonly attribute Element nextElementSibling; 120 readonly attribute Element nextElementSibling;
121 readonly attribute unsigned long childElementCount; 121 readonly attribute unsigned long childElementCount;
122 122
123 // DOM 4
124 void remove()
125 raises(DOMException);
126
127 #if defined(LANGUAGE_JAVASCRIPT) && LANGUAGE_JAVASCRIPT 123 #if defined(LANGUAGE_JAVASCRIPT) && LANGUAGE_JAVASCRIPT
128 // CSSOM View Module API 124 // CSSOM View Module API
129 ClientRectList getClientRects(); 125 ClientRectList getClientRects();
130 ClientRect getBoundingClientRect(); 126 ClientRect getBoundingClientRect();
131 #endif 127 #endif
132 128
133 #if defined(LANGUAGE_OBJECTIVE_C) && LANGUAGE_OBJECTIVE_C 129 #if defined(LANGUAGE_OBJECTIVE_C) && LANGUAGE_OBJECTIVE_C
134 // Objective-C extensions 130 // Objective-C extensions
135 readonly attribute DOMString innerText; 131 readonly attribute DOMString innerText;
136 #endif 132 #endif
137 133
138 #if defined(ENABLE_FULLSCREEN_API) && ENABLE_FULLSCREEN_API 134 #if defined(ENABLE_FULLSCREEN_API) && ENABLE_FULLSCREEN_API
139 // Mozilla version 135 // Mozilla version
140 const unsigned short ALLOW_KEYBOARD_INPUT = 1; 136 const unsigned short ALLOW_KEYBOARD_INPUT = 1;
141 [V8EnabledAtRuntime] void webkitRequestFullScreen(in [Optional=DefaultIs Undefined] unsigned short flags); 137 [V8EnabledAtRuntime] void webkitRequestFullScreen(in [Optional=DefaultIs Undefined] unsigned short flags);
142 138
143 // W3C version 139 // W3C version
144 [V8EnabledAtRuntime] void webkitRequestFullscreen(); 140 [V8EnabledAtRuntime] void webkitRequestFullscreen();
145 #endif 141 #endif
146 142
147 [Conditional=POINTER_LOCK, V8EnabledAtRuntime=pointerLock] void webkitRe questPointerLock(); 143 [Conditional=POINTER_LOCK, V8EnabledAtRuntime=pointerLock] void webkitRe questPointerLock();
148 144
149 // CSS Regions API 145 // CSS Regions API
150 readonly attribute [Conditional=CSS_REGIONS] DOMString webkitRegionOvers et; 146 readonly attribute DOMString webkitRegionOverset;
151 [Conditional=CSS_REGIONS] sequence<Range> webkitGetRegionFlowRanges();
152 147
153 #if !defined(LANGUAGE_OBJECTIVE_C) || !LANGUAGE_OBJECTIVE_C 148 #if !defined(LANGUAGE_OBJECTIVE_C) || !LANGUAGE_OBJECTIVE_C
154 // Event handler DOM attributes 149 // Event handler DOM attributes
155 attribute [NotEnumerable] EventListener onabort; 150 attribute [NotEnumerable] EventListener onabort;
156 attribute [NotEnumerable] EventListener onblur; 151 attribute [NotEnumerable] EventListener onblur;
157 attribute [NotEnumerable] EventListener onchange; 152 attribute [NotEnumerable] EventListener onchange;
158 attribute [NotEnumerable] EventListener onclick; 153 attribute [NotEnumerable] EventListener onclick;
159 attribute [NotEnumerable] EventListener oncontextmenu; 154 attribute [NotEnumerable] EventListener oncontextmenu;
160 attribute [NotEnumerable] EventListener ondblclick; 155 attribute [NotEnumerable] EventListener ondblclick;
161 attribute [NotEnumerable] EventListener ondrag; 156 attribute [NotEnumerable] EventListener ondrag;
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 attribute [NotEnumerable,Conditional=TOUCH_EVENTS,V8EnabledAtRuntime] Ev entListener ontouchstart; 214 attribute [NotEnumerable,Conditional=TOUCH_EVENTS,V8EnabledAtRuntime] Ev entListener ontouchstart;
220 attribute [NotEnumerable,Conditional=TOUCH_EVENTS,V8EnabledAtRuntime] Ev entListener ontouchmove; 215 attribute [NotEnumerable,Conditional=TOUCH_EVENTS,V8EnabledAtRuntime] Ev entListener ontouchmove;
221 attribute [NotEnumerable,Conditional=TOUCH_EVENTS,V8EnabledAtRuntime] Ev entListener ontouchend; 216 attribute [NotEnumerable,Conditional=TOUCH_EVENTS,V8EnabledAtRuntime] Ev entListener ontouchend;
222 attribute [NotEnumerable,Conditional=TOUCH_EVENTS,V8EnabledAtRuntime] Ev entListener ontouchcancel; 217 attribute [NotEnumerable,Conditional=TOUCH_EVENTS,V8EnabledAtRuntime] Ev entListener ontouchcancel;
223 attribute [NotEnumerable, Conditional=FULLSCREEN_API] EventListener onwe bkitfullscreenchange; 218 attribute [NotEnumerable, Conditional=FULLSCREEN_API] EventListener onwe bkitfullscreenchange;
224 attribute [NotEnumerable, Conditional=FULLSCREEN_API] EventListener onwe bkitfullscreenerror; 219 attribute [NotEnumerable, Conditional=FULLSCREEN_API] EventListener onwe bkitfullscreenerror;
225 #endif 220 #endif
226 }; 221 };
227 222
228 } 223 }
OLDNEW
« no previous file with comments | « third_party/WebCore/dom/DocumentType.idl ('k') | third_party/WebCore/dom/MessagePort.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698