| OLD | NEW |
| 1 // This file introduces / supplements and forces Dart declarations. | 1 // This file introduces / supplements and forces Dart declarations. |
| 2 | 2 |
| 3 [Supplemental, | 3 [Supplemental, |
| 4 Constructor] | 4 Constructor] |
| 5 interface AudioContext {}; | 5 interface AudioContext {}; |
| 6 | 6 |
| 7 [Supplemental] | 7 [Supplemental] |
| 8 interface Document { | 8 interface Document { |
| 9 [Suppressed] DOMObject getCSSCanvasContext(in DOMString contextId, in DOMStrin
g name, in long width, in long height); | 9 [Suppressed] DOMObject getCSSCanvasContext(in DOMString contextId, in DOMStrin
g name, in long width, in long height); |
| 10 CanvasRenderingContext getCSSCanvasContext(in DOMString contextId, in DOMStrin
g name, in long width, in long height); | 10 CanvasRenderingContext getCSSCanvasContext(in DOMString contextId, in DOMStrin
g name, in long width, in long height); |
| (...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 336 }; | 336 }; |
| 337 | 337 |
| 338 [Supplemental] | 338 [Supplemental] |
| 339 interface XMLHttpRequest { | 339 interface XMLHttpRequest { |
| 340 [Custom] void send() | 340 [Custom] void send() |
| 341 raises(DOMException); | 341 raises(DOMException); |
| 342 [Custom] void send(in ArrayBuffer data) // FIXME: this should be eventually d
eprecated. | 342 [Custom] void send(in ArrayBuffer data) // FIXME: this should be eventually d
eprecated. |
| 343 raises(DOMException); | 343 raises(DOMException); |
| 344 [Custom] void send(in ArrayBufferView data) | 344 [Custom] void send(in ArrayBufferView data) |
| 345 raises(DOMException); | 345 raises(DOMException); |
| 346 [Conditional=BLOB, Custom] void send(in Blob data) | 346 [Custom] void send(in Blob data) |
| 347 raises(DOMException); | 347 raises(DOMException); |
| 348 [Custom] void send(in Document data) | 348 [Custom] void send(in Document data) |
| 349 raises(DOMException); | 349 raises(DOMException); |
| 350 [Custom] void send([StrictTypeChecking] in DOMString data) | 350 [Custom] void send([StrictTypeChecking] in DOMString data) |
| 351 raises(DOMException); | 351 raises(DOMException); |
| 352 [Custom] void send(in DOMFormData data) | 352 [Custom] void send(in DOMFormData data) |
| 353 raises(DOMException); | 353 raises(DOMException); |
| 354 }; | 354 }; |
| 355 | 355 |
| 356 | 356 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 373 [Suppressed] | 373 [Suppressed] |
| 374 interface ScriptProfile {}; | 374 interface ScriptProfile {}; |
| 375 | 375 |
| 376 | 376 |
| 377 [Suppressed] | 377 [Suppressed] |
| 378 interface ScriptProfileNode {}; | 378 interface ScriptProfileNode {}; |
| 379 | 379 |
| 380 | 380 |
| 381 [Suppressed] | 381 [Suppressed] |
| 382 interface Entity {}; | 382 interface Entity {}; |
| OLD | NEW |