| 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 FileList implements sequence<File>; | 5 FileList implements sequence<File>; |
| 6 HTMLCollection implements sequence<Node>; | 6 HTMLCollection implements sequence<Node>; |
| 7 MediaList implements sequence<DOMString>; | 7 MediaList implements sequence<DOMString>; |
| 8 NamedNodeMap implements sequence<Node>; | 8 NamedNodeMap implements sequence<Node>; |
| 9 NodeList implements sequence<Node>; | 9 NodeList implements sequence<Node>; |
| 10 StyleSheetList implements sequence<StyleSheet>; | 10 StyleSheetList implements sequence<StyleSheet>; |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 [Suppressed, StrictTypeChecking, Custom] void getTexParameter(); | 131 [Suppressed, StrictTypeChecking, Custom] void getTexParameter(); |
| 132 | 132 |
| 133 any getUniform(in WebGLProgram program, in WebGLUniformLocation location) ra
ises(DOMException); | 133 any getUniform(in WebGLProgram program, in WebGLUniformLocation location) ra
ises(DOMException); |
| 134 [Suppressed, StrictTypeChecking, Custom] void getUniform(); | 134 [Suppressed, StrictTypeChecking, Custom] void getUniform(); |
| 135 | 135 |
| 136 any getVertexAttrib(in unsigned long index, in unsigned long pname) raises(D
OMException); | 136 any getVertexAttrib(in unsigned long index, in unsigned long pname) raises(D
OMException); |
| 137 [Suppressed, StrictTypeChecking, Custom] void getVertexAttrib(); | 137 [Suppressed, StrictTypeChecking, Custom] void getVertexAttrib(); |
| 138 }; | 138 }; |
| 139 } | 139 } |
| 140 | 140 |
| 141 | 141 module css { |
| 142 interface CSSStyleDeclaration { |
| 143 void setProperty(in DOMString propertyName, in DOMString value, [Optional] i
n DOMString priority); |
| 144 }; |
| 145 }; |
| 142 | 146 |
| 143 module canvas { | 147 module canvas { |
| 144 [Supplemental, | 148 [Supplemental, |
| 145 Constructor(in long length)] // Add constructor signature. | 149 Constructor(in long length)] // Add constructor signature. |
| 146 interface ArrayBuffer { | 150 interface ArrayBuffer { |
| 147 }; | 151 }; |
| 148 [Supplemental] | 152 [Supplemental] |
| 149 interface Float32Array { | 153 interface Float32Array { |
| 150 [Suppressed] void set(); | 154 [Suppressed] void set(); |
| 151 [DartName=setElements, Custom] void set(in any array, [Optional] in unsigned
long offset); | 155 [DartName=setElements, Custom] void set(in any array, [Optional] in unsigned
long offset); |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 286 CustomConstructor, | 290 CustomConstructor, |
| 287 // Provide missing constructor signature. | 291 // Provide missing constructor signature. |
| 288 Constructor(MutationCallback callback)] | 292 Constructor(MutationCallback callback)] |
| 289 interface MutationObserver { | 293 interface MutationObserver { |
| 290 // Rename 'observe' so we can define a new 'observe' API that calls the | 294 // Rename 'observe' so we can define a new 'observe' API that calls the |
| 291 // original. | 295 // original. |
| 292 [DartName=_observe] void observe(in Node target, in Dictionary options) | 296 [DartName=_observe] void observe(in Node target, in Dictionary options) |
| 293 raises(DOMException); | 297 raises(DOMException); |
| 294 }; | 298 }; |
| 295 } | 299 } |
| OLD | NEW |