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

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

Issue 11365203: Unmerging HTMLDocument from Document. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Try again? Created 8 years, 1 month 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 | « sdk/lib/html/dartium/html_dartium.dart ('k') | sdk/lib/html/scripts/generator.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 core { 4 module core {
5 [Supplemental] 5 [Supplemental]
6 interface Document { 6 interface Document {
7 [Suppressed] DOMObject getCSSCanvasContext(in DOMString contextId, in DOMStr ing name, in long width, in long height); 7 [Suppressed] DOMObject getCSSCanvasContext(in DOMString contextId, in DOMStr ing name, in long width, in long height);
8 CanvasRenderingContext getCSSCanvasContext(in DOMString contextId, in DOMStr ing name, in long width, in long height); 8 CanvasRenderingContext getCSSCanvasContext(in DOMString contextId, in DOMStr ing name, in long width, in long height);
9 }; 9 };
10 }; 10 };
(...skipping 18 matching lines...) Expand all
29 module html { 29 module html {
30 [Supplemental] 30 [Supplemental]
31 interface Console { 31 interface Console {
32 [Suppressed] void assert(in boolean condition); 32 [Suppressed] void assert(in boolean condition);
33 [CallWith=ScriptArguments|CallStack] void assertCondition(boolean condition) ; 33 [CallWith=ScriptArguments|CallStack] void assertCondition(boolean condition) ;
34 }; 34 };
35 35
36 interface HTMLCanvasElement { 36 interface HTMLCanvasElement {
37 [Suppressed] DOMString toDataURL([TreatNullAs=NullString, TreatUndefinedAs=N ullString,Optional=DefaultIsUndefined] in DOMString type) raises(DOMException); 37 [Suppressed] DOMString toDataURL([TreatNullAs=NullString, TreatUndefinedAs=N ullString,Optional=DefaultIsUndefined] in DOMString type) raises(DOMException);
38 [Custom] DOMString toDataURL([TreatNullAs=NullString, TreatUndefinedAs=NullS tring,Optional=DefaultIsUndefined] in DOMString type, [Optional] in float qualit y) raises(DOMException); 38 [Custom] DOMString toDataURL([TreatNullAs=NullString, TreatUndefinedAs=NullS tring,Optional=DefaultIsUndefined] in DOMString type, [Optional] in float qualit y) raises(DOMException);
39
40 }; 39 };
41 40
42 [Supplemental] 41 [Supplemental]
43 interface HTMLOptionsCollection { 42 interface HTMLOptionsCollection {
44 [Suppressed] void add([Optional] in HTMLOptionElement element, [Optional] in long before); 43 [Suppressed] void add([Optional] in HTMLOptionElement element, [Optional] in long before);
45 }; 44 };
46 45
47 [Supplemental] 46 [Supplemental]
48 interface HTMLSelectElement { 47 interface HTMLSelectElement {
49 [Suppressed] void add([Optional=DefaultIsUndefined] in HTMLElement element, [Optional=DefaultIsUndefined] in HTMLElement before); 48 [Suppressed] void add([Optional=DefaultIsUndefined] in HTMLElement element, [Optional=DefaultIsUndefined] in HTMLElement before);
(...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after
335 [Custom] void send(Blob data) raises(DOMException); 334 [Custom] void send(Blob data) raises(DOMException);
336 [Custom] void send(ArrayBuffer data) raises(DOMException); 335 [Custom] void send(ArrayBuffer data) raises(DOMException);
337 [Custom] void send(ArrayBufferView data) raises(DOMException); 336 [Custom] void send(ArrayBufferView data) raises(DOMException);
338 }; 337 };
339 } 338 }
340 339
341 module core { 340 module core {
342 [Suppressed] 341 [Suppressed]
343 interface Entity {}; 342 interface Entity {};
344 } 343 }
OLDNEW
« no previous file with comments | « sdk/lib/html/dartium/html_dartium.dart ('k') | sdk/lib/html/scripts/generator.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698