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

Side by Side Diff: lib/html/idl/dart/dart.idl

Issue 11065014: Override CSSStyleDeclaration.getPropertyValue in general way. (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 | « lib/html/dartium/html_dartium.dart ('k') | lib/html/scripts/systemhtml.py » ('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 // This file introduces / supplements and forces Dart declarations. 2 // This file introduces / supplements and forces Dart declarations.
3 3
4 module default { 4 module default {
5 // TODO(efortuna): Clean up these comments once we have dealt with the extra 5 // TODO(efortuna): Clean up these comments once we have dealt with the extra
6 // methods on these list-like classes. 6 // methods on these list-like classes.
7 ClientRectList implements sequence<ClientRect>; 7 ClientRectList implements sequence<ClientRect>;
8 CSSRuleList implements sequence<CSSRule>; 8 CSSRuleList implements sequence<CSSRule>;
9 CSSValueList implements sequence<CSSValue>; 9 CSSValueList implements sequence<CSSValue>;
10 DOMMimeTypeArray implements sequence<DOMMimeType>; // has namedItem field. 10 DOMMimeTypeArray implements sequence<DOMMimeType>; // has namedItem field.
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 195
196 any getUniform(in WebGLProgram program, in WebGLUniformLocation location) ra ises(DOMException); 196 any getUniform(in WebGLProgram program, in WebGLUniformLocation location) ra ises(DOMException);
197 [Suppressed, StrictTypeChecking, Custom] void getUniform(); 197 [Suppressed, StrictTypeChecking, Custom] void getUniform();
198 198
199 any getVertexAttrib(in unsigned long index, in unsigned long pname) raises(D OMException); 199 any getVertexAttrib(in unsigned long index, in unsigned long pname) raises(D OMException);
200 [Suppressed, StrictTypeChecking, Custom] void getVertexAttrib(); 200 [Suppressed, StrictTypeChecking, Custom] void getVertexAttrib();
201 }; 201 };
202 } 202 }
203 203
204 module css { 204 module css {
205 [Supplemental]
205 interface CSSStyleDeclaration { 206 interface CSSStyleDeclaration {
206 void setProperty(in DOMString propertyName, in DOMString value, [Optional] i n DOMString priority); 207 void setProperty(in DOMString propertyName, in DOMString value, [Optional] i n DOMString priority);
208 [DartName=_getPropertyValue] DOMString getPropertyValue(in DOMString propert yName);
207 }; 209 };
208 }; 210 };
209 211
210 module canvas { 212 module canvas {
211 [Supplemental, 213 [Supplemental,
212 Constructor(in long length)] // Add constructor signature. 214 Constructor(in long length)] // Add constructor signature.
213 interface ArrayBuffer { 215 interface ArrayBuffer {
214 }; 216 };
215 [Supplemental] 217 [Supplemental]
216 interface Float32Array { 218 interface Float32Array {
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
402 } 404 }
403 405
404 module core { 406 module core {
405 [supplemental, Callback] 407 [supplemental, Callback]
406 interface RequestAnimationFrameCallback { 408 interface RequestAnimationFrameCallback {
407 // Webkit implements this as returning bool, but standard is void. 409 // Webkit implements this as returning bool, but standard is void.
408 [Suppressed] boolean handleEvent(in DOMTimeStamp time); 410 [Suppressed] boolean handleEvent(in DOMTimeStamp time);
409 [Custom] void handleEvent(in DOMTimeStamp time); 411 [Custom] void handleEvent(in DOMTimeStamp time);
410 }; 412 };
411 } 413 }
OLDNEW
« no previous file with comments | « lib/html/dartium/html_dartium.dart ('k') | lib/html/scripts/systemhtml.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698