Index: Source/core/html/HTMLElement.cpp |
diff --git a/Source/core/html/HTMLElement.cpp b/Source/core/html/HTMLElement.cpp |
index 5ece8d22303fd50149da58821b9fd4374b3318b6..5e03b35fc70f48acfdc487e6e5c3113fc929aef3 100644 |
--- a/Source/core/html/HTMLElement.cpp |
+++ b/Source/core/html/HTMLElement.cpp |
@@ -204,6 +204,8 @@ AtomicString HTMLElement::eventNameForAttributeName(const QualifiedName& attrNam |
attributeNameToEventNameMap.set(oncontextmenuAttr.localName(), eventNames().contextmenuEvent); |
attributeNameToEventNameMap.set(ondblclickAttr.localName(), eventNames().dblclickEvent); |
attributeNameToEventNameMap.set(onmousedownAttr.localName(), eventNames().mousedownEvent); |
+ attributeNameToEventNameMap.set(onmouseenterAttr.localName(), eventNames().mouseenterEvent); |
+ attributeNameToEventNameMap.set(onmouseleaveAttr.localName(), eventNames().mouseleaveEvent); |
attributeNameToEventNameMap.set(onmousemoveAttr.localName(), eventNames().mousemoveEvent); |
attributeNameToEventNameMap.set(onmouseoutAttr.localName(), eventNames().mouseoutEvent); |
attributeNameToEventNameMap.set(onmouseoverAttr.localName(), eventNames().mouseoverEvent); |