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

Unified Diff: Source/core/svg/SVGElementInstance.idl

Issue 257033002: Do not implement EventTarget on SVGElementInstance (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Try to fix TestExpectations Created 6 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 | « Source/core/svg/SVGElementInstance.cpp ('k') | Source/core/svg/SVGUseElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGElementInstance.idl
diff --git a/Source/core/svg/SVGElementInstance.idl b/Source/core/svg/SVGElementInstance.idl
index 192ccf5896402bf27ee676b7466fb628fed4bdb7..464e089d1ff9ef856c1ef9817db530727f24e946 100644
--- a/Source/core/svg/SVGElementInstance.idl
+++ b/Source/core/svg/SVGElementInstance.idl
@@ -26,7 +26,7 @@
[
DependentLifetime,
-] interface SVGElementInstance : EventTarget
+] interface SVGElementInstance
{
readonly attribute SVGElement correspondingElement;
readonly attribute SVGUseElement correspondingUseElement;
@@ -35,49 +35,4 @@
readonly attribute SVGElementInstance lastChild;
readonly attribute SVGElementInstance previousSibling;
readonly attribute SVGElementInstance nextSibling;
-
- // EventTarget
- [NotEnumerable] attribute EventHandler onabort;
- [NotEnumerable] attribute EventHandler onblur;
- [NotEnumerable] attribute EventHandler onchange;
- [NotEnumerable] attribute EventHandler onclick;
- [NotEnumerable] attribute EventHandler oncontextmenu;
- [NotEnumerable] attribute EventHandler ondblclick;
- [NotEnumerable] attribute EventHandler onerror;
- [NotEnumerable] attribute EventHandler onfocus;
- [NotEnumerable] attribute EventHandler oninput;
- [NotEnumerable] attribute EventHandler onkeydown;
- [NotEnumerable] attribute EventHandler onkeypress;
- [NotEnumerable] attribute EventHandler onkeyup;
- [NotEnumerable] attribute EventHandler onload;
- [NotEnumerable] attribute EventHandler onmousedown;
- [NotEnumerable] attribute EventHandler onmouseenter;
- [NotEnumerable] attribute EventHandler onmouseleave;
- [NotEnumerable] attribute EventHandler onmousemove;
- [NotEnumerable] attribute EventHandler onmouseout;
- [NotEnumerable] attribute EventHandler onmouseover;
- [NotEnumerable] attribute EventHandler onmouseup;
- [NotEnumerable] attribute EventHandler onmousewheel; // Deprecated in favor of onwheel.
- [NotEnumerable] attribute EventHandler onbeforecut;
- [NotEnumerable] attribute EventHandler oncut;
- [NotEnumerable] attribute EventHandler onbeforecopy;
- [NotEnumerable] attribute EventHandler oncopy;
- [NotEnumerable] attribute EventHandler onbeforepaste;
- [NotEnumerable] attribute EventHandler onpaste;
- [NotEnumerable] attribute EventHandler ondragenter;
- [NotEnumerable] attribute EventHandler ondragover;
- [NotEnumerable] attribute EventHandler ondragleave;
- [NotEnumerable] attribute EventHandler ondrop;
- [NotEnumerable] attribute EventHandler ondragstart;
- [NotEnumerable] attribute EventHandler ondrag;
- [NotEnumerable] attribute EventHandler ondragend;
- [NotEnumerable] attribute EventHandler onreset;
- [NotEnumerable] attribute EventHandler onresize;
- [NotEnumerable] attribute EventHandler onscroll;
- [NotEnumerable] attribute EventHandler onsearch;
- [NotEnumerable] attribute EventHandler onselect;
- [NotEnumerable] attribute EventHandler onselectstart;
- [NotEnumerable] attribute EventHandler onsubmit;
- [NotEnumerable] attribute EventHandler onunload;
- [NotEnumerable] attribute EventHandler onwheel;
};
« no previous file with comments | « Source/core/svg/SVGElementInstance.cpp ('k') | Source/core/svg/SVGUseElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698