Index: Source/core/svg/SVGElement.cpp |
diff --git a/Source/core/svg/SVGElement.cpp b/Source/core/svg/SVGElement.cpp |
index dffa90982c18e023169c0361571c0c274adde89d..d2ce74ee3106bedf831392ab90ba7a7fbfca2b3e 100644 |
--- a/Source/core/svg/SVGElement.cpp |
+++ b/Source/core/svg/SVGElement.cpp |
@@ -320,6 +320,10 @@ void SVGElement::parseAttribute(const QualifiedName& name, const AtomicString& v |
setAttributeEventListener(eventNames().clickEvent, createAttributeEventListener(this, name, value)); |
else if (name == onmousedownAttr) |
setAttributeEventListener(eventNames().mousedownEvent, createAttributeEventListener(this, name, value)); |
+ else if (name == onmouseenterAttr) |
+ setAttributeEventListener(eventNames().mouseenterEvent, createAttributeEventListener(this, name, value)); |
+ else if (name == onmouseleaveAttr) |
+ setAttributeEventListener(eventNames().mouseleaveEvent, createAttributeEventListener(this, name, value)); |
else if (name == onmousemoveAttr) |
setAttributeEventListener(eventNames().mousemoveEvent, createAttributeEventListener(this, name, value)); |
else if (name == onmouseoutAttr) |