summaryrefslogtreecommitdiff
path: root/dom/events
diff options
context:
space:
mode:
authorjanekptacijarabaci <janekptacijarabaci@seznam.cz>2018-04-23 09:13:00 +0200
committerjanekptacijarabaci <janekptacijarabaci@seznam.cz>2018-04-23 09:13:00 +0200
commit037c8cfcb18fecce505da2a5bf83da890373057b (patch)
tree5e88b91a175d59c46a01db3992cfe9085f3f77ec /dom/events
parent93f808acd482ee5d978ab7ead70b9abcf560e143 (diff)
downloadaura-central-037c8cfcb18fecce505da2a5bf83da890373057b.tar.gz
moebius%123: DOM - Events - support createEvent("FocusEvent")
https://github.com/MoonchildProductions/moebius/pull/123
Diffstat (limited to 'dom/events')
-rw-r--r--dom/events/EventDispatcher.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/dom/events/EventDispatcher.cpp b/dom/events/EventDispatcher.cpp
index a1d0675ae..65f01844b 100644
--- a/dom/events/EventDispatcher.cpp
+++ b/dom/events/EventDispatcher.cpp
@@ -1056,6 +1056,11 @@ EventDispatcher::CreateEvent(EventTarget* aOwner,
LOG_EVENT_CREATION(STORAGEEVENT);
return NS_NewDOMStorageEvent(aOwner);
}
+ if (aEventType.LowerCaseEqualsLiteral("focusevent")) {
+ RefPtr<Event> event = NS_NewDOMFocusEvent(aOwner, aPresContext, nullptr);
+ event->MarkUninitialized();
+ return event.forget();
+ }
#undef LOG_EVENT_CREATION