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

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

Issue 10696209: MutationObserver (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 5 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
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 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 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 [Supplemental, Callback] // Add missing Callback attribute. 273 [Supplemental, Callback] // Add missing Callback attribute.
274 interface VoidCallback { 274 interface VoidCallback {
275 }; 275 };
276 }; 276 };
277 277
278 module svg { 278 module svg {
279 interface SVGNumber { 279 interface SVGNumber {
280 [StrictTypeChecking, Custom] attribute float value; 280 [StrictTypeChecking, Custom] attribute float value;
281 }; 281 };
282 } 282 }
283
284 module core {
285 [Supplemental,
286 CustomConstructor,
287 // Provide missing constructor signature.
288 Constructor(MutationCallback callback)]
289 interface MutationObserver {
290 // Rename 'observe' so we can define a new 'observe' API that calls the
291 // original.
292 [DartName=_observe] void observe(in Node target, in Dictionary options)
293 raises(DOMException);
294 };
295 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698