| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |