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

Side by Side Diff: tools/dom/idl/dart/dart.idl

Issue 12374016: Remove custom remove method from HTMLSelectElement in dart.idl. The members are suppressed in htmlr… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 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 | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 47
48 [Supplemental] 48 [Supplemental]
49 interface HTMLOptionsCollection { 49 interface HTMLOptionsCollection {
50 [Suppressed] void add([Optional] in HTMLOptionElement element, [Optional] in l ong before); 50 [Suppressed] void add([Optional] in HTMLOptionElement element, [Optional] in l ong before);
51 }; 51 };
52 52
53 [Supplemental] 53 [Supplemental]
54 interface HTMLSelectElement { 54 interface HTMLSelectElement {
55 [Suppressed] void add([Optional=DefaultIsUndefined] in HTMLElement element, [O ptional=DefaultIsUndefined] in HTMLElement before); 55 [Suppressed] void add([Optional=DefaultIsUndefined] in HTMLElement element, [O ptional=DefaultIsUndefined] in HTMLElement before);
56 [Suppressed, Custom] void remove(); 56 [Suppressed, Custom] void remove();
57 [Custom] void remove(in long index);
58 [Custom] void remove(in HTMLOptionElement option);
59 }; 57 };
60 58
61 [Supplemental] 59 [Supplemental]
62 interface ImageData { 60 interface ImageData {
63 [Custom] readonly attribute int[] data; 61 [Custom] readonly attribute int[] data;
64 }; 62 };
65 63
66 [Supplemental] 64 [Supplemental]
67 interface HTMLMediaElement { 65 interface HTMLMediaElement {
68 // Adding media events. 66 // Adding media events.
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
355 raises(DOMException); 353 raises(DOMException);
356 [Custom] void send([StrictTypeChecking] in DOMString data) 354 [Custom] void send([StrictTypeChecking] in DOMString data)
357 raises(DOMException); 355 raises(DOMException);
358 [Custom] void send(in DOMFormData data) 356 [Custom] void send(in DOMFormData data)
359 raises(DOMException); 357 raises(DOMException);
360 }; 358 };
361 359
362 360
363 [Suppressed] 361 [Suppressed]
364 interface Entity {}; 362 interface Entity {};
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698