Index: Source/core/svg/SVGElement.cpp |
diff --git a/Source/core/svg/SVGElement.cpp b/Source/core/svg/SVGElement.cpp |
index 0ab482d46c41e554d401647e5d593411ff68d8a2..3d5b75634a6d3edc97eb7aeea02f5009e94fbc97 100644 |
--- a/Source/core/svg/SVGElement.cpp |
+++ b/Source/core/svg/SVGElement.cpp |
@@ -653,12 +653,6 @@ void SVGElement::parseAttribute(const QualifiedName& name, const AtomicString& v |
// standard events |
if (name == onloadAttr) |
setAttributeEventListener(EventTypeNames::load, createAttributeEventListener(this, name, value)); |
- else if (name == onbeginAttr) |
- setAttributeEventListener(EventTypeNames::beginEvent, createAttributeEventListener(this, name, value)); |
- else if (name == onendAttr) |
- setAttributeEventListener(EventTypeNames::endEvent, createAttributeEventListener(this, name, value)); |
- else if (name == onrepeatAttr) |
- setAttributeEventListener(EventTypeNames::repeatEvent, createAttributeEventListener(this, name, value)); |
else if (name == onclickAttr) |
setAttributeEventListener(EventTypeNames::click, createAttributeEventListener(this, name, value)); |
else if (name == onmousedownAttr) |