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

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

Issue 25719003: Fixing Node.clone not returning upgraded custom elements. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 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 | « tests/html/custom/constructor_calls_created_synchronously_test.dart ('k') | 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 // TODO(ager): Auto-generate this custom method when the info about retaining 6 // TODO(ager): Auto-generate this custom method when the info about retaining
7 // typed arrays is in the IDL. 7 // typed arrays is in the IDL.
8 [Custom] void decodeAudioData(ArrayBuffer audioData, AudioBufferCallback succe ssCallback, AudioBufferCallback errorCallback); 8 [Custom] void decodeAudioData(ArrayBuffer audioData, AudioBufferCallback succe ssCallback, AudioBufferCallback errorCallback);
9 }; 9 };
10 10
(...skipping 22 matching lines...) Expand all
33 [Suppressed] DOMObject getCSSCanvasContext(DOMString contextId, DOMString name , long width, long height); 33 [Suppressed] DOMObject getCSSCanvasContext(DOMString contextId, DOMString name , long width, long height);
34 CanvasRenderingContext getCSSCanvasContext(DOMString contextId, DOMString name , long width, long height); 34 CanvasRenderingContext getCSSCanvasContext(DOMString contextId, DOMString name , long width, long height);
35 [Custom] Element createElement(DOMString tagName); 35 [Custom] Element createElement(DOMString tagName);
36 [Custom] Element createElement(DOMString localName, DOMString typeExtension); 36 [Custom] Element createElement(DOMString localName, DOMString typeExtension);
37 [Custom] Element createElementNS(DOMString namespaceURI, DOMString qualifiedNa me); 37 [Custom] Element createElementNS(DOMString namespaceURI, DOMString qualifiedNa me);
38 [Custom] Element createElementNS(DOMString namespaceURI, DOMString qualifiedNa me, DOMString typeExtension); 38 [Custom] Element createElementNS(DOMString namespaceURI, DOMString qualifiedNa me, DOMString typeExtension);
39 }; 39 };
40 40
41 [Supplemental] 41 [Supplemental]
42 interface Node { 42 interface Node {
43 Node cloneNode([Default=Undefined] optional boolean deep); 43 [Custom] Node cloneNode([Default=Undefined] optional boolean deep);
44 }; 44 };
45 45
46 [Supplemental] 46 [Supplemental]
47 interface ScriptProcessorNode { 47 interface ScriptProcessorNode {
48 [Suppressed] attribute EventListener onaudioprocess; 48 [Suppressed] attribute EventListener onaudioprocess;
49 [Custom] void _setEventListener(EventListener eventListener); 49 [Custom] void _setEventListener(EventListener eventListener);
50 }; 50 };
51 51
52 /* 52 /*
53 // TODO(vsm): How should this interact with the new ChildNode and 53 // TODO(vsm): How should this interact with the new ChildNode and
(...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after
344 // TextEncoder/TextDecoder 344 // TextEncoder/TextDecoder
345 [Suppressed] 345 [Suppressed]
346 interface TextEncoder {}; 346 interface TextEncoder {};
347 347
348 [Suppressed] 348 [Suppressed]
349 interface TextDecoder {}; 349 interface TextDecoder {};
350 350
351 [Supplemental] 351 [Supplemental]
352 interface Window : EventTarget {}; 352 interface Window : EventTarget {};
353 353
OLDNEW
« no previous file with comments | « tests/html/custom/constructor_calls_created_synchronously_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698