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

Unified Diff: tools/dom/idl/dart/dart.idl

Issue 2905223002: Cherry-picks of multiple html CLs
Patch Set: Created 3 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/lib_strong/lib_strong.status ('k') | tools/dom/scripts/generator.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/dom/idl/dart/dart.idl
diff --git a/tools/dom/idl/dart/dart.idl b/tools/dom/idl/dart/dart.idl
index ffe500f5d1a40bdd649447d04a6f7a43ad7ae381..58632fa569d7f3c52de2752048492689a57903f4 100644
--- a/tools/dom/idl/dart/dart.idl
+++ b/tools/dom/idl/dart/dart.idl
@@ -463,8 +463,14 @@ interface RTCPeerConnection {
};
[DartSuppress]
+interface DragEvent {};
+
+[DartSuppress]
interface InputEvent {};
+[DartSuppress]
+interface Scale {};
+
Element implements GlobalEventHandlers;
@@ -473,3 +479,12 @@ Element implements GlobalEventHandlers;
interface CSSCharsetRule : CSSRule {
[MeasureAs=CSSCharsetRuleEncoding] attribute DOMString encoding;
};
+
+
+[DartSupplemental]
+interface EventTarget {
+ [DartSuppress] void addEventListener(DOMString type, EventListener? listener, optional (EventListenerOptions or boolean) options);
+ [DartSuppress] void removeEventListener(DOMString type, EventListener? listener, optional (EventListenerOptions or boolean) options);
+ [Custom] void addEventListener(DOMString type, EventListener? listener, optional boolean options);
+ [Custom] void removeEventListener(DOMString type, EventListener? listener, optional boolean options);
+};
« no previous file with comments | « tests/lib_strong/lib_strong.status ('k') | tools/dom/scripts/generator.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698