summaryrefslogtreecommitdiffstats
path: root/dom
diff options
context:
space:
mode:
Diffstat (limited to 'dom')
-rw-r--r--dom/events/EventNameList.h4
-rw-r--r--dom/html/HTMLDialogElement.cpp3
-rw-r--r--dom/html/HTMLDialogElement.h1
-rw-r--r--dom/webidl/EventHandler.webidl2
4 files changed, 9 insertions, 1 deletions
diff --git a/dom/events/EventNameList.h b/dom/events/EventNameList.h
index 214b844e7..c299133e3 100644
--- a/dom/events/EventNameList.h
+++ b/dom/events/EventNameList.h
@@ -172,6 +172,10 @@ EVENT(click,
eMouseClick,
EventNameType_All,
eMouseEventClass)
+EVENT(close,
+ eClose,
+ EventNameType_HTML,
+ eBasicEventClass)
EVENT(contextmenu,
eContextMenu,
EventNameType_HTMLXUL,
diff --git a/dom/html/HTMLDialogElement.cpp b/dom/html/HTMLDialogElement.cpp
index 1f796f9a6..1f65b602f 100644
--- a/dom/html/HTMLDialogElement.cpp
+++ b/dom/html/HTMLDialogElement.cpp
@@ -30,6 +30,9 @@ HTMLDialogElement::Close(const mozilla::dom::Optional<nsAString>& aReturnValue)
ErrorResult ignored;
SetOpen(false, ignored);
ignored.SuppressException();
+ RefPtr<AsyncEventDispatcher> eventDispatcher =
+ new AsyncEventDispatcher(this, NS_LITERAL_STRING("close"), false);
+ eventDispatcher->PostDOMEvent();
}
void
diff --git a/dom/html/HTMLDialogElement.h b/dom/html/HTMLDialogElement.h
index 7abaee81c..2222cd2f7 100644
--- a/dom/html/HTMLDialogElement.h
+++ b/dom/html/HTMLDialogElement.h
@@ -7,6 +7,7 @@
#ifndef HTMLDialogElement_h
#define HTMLDialogElement_h
+#include "mozilla/AsyncEventDispatcher.h"
#include "mozilla/Attributes.h"
#include "nsGenericHTMLElement.h"
#include "nsGkAtoms.h"
diff --git a/dom/webidl/EventHandler.webidl b/dom/webidl/EventHandler.webidl
index 1edc45ac9..b92e3a2bb 100644
--- a/dom/webidl/EventHandler.webidl
+++ b/dom/webidl/EventHandler.webidl
@@ -38,7 +38,7 @@ interface GlobalEventHandlers {
attribute EventHandler oncanplaythrough;
attribute EventHandler onchange;
attribute EventHandler onclick;
- //(Not implemented)attribute EventHandler onclose;
+ attribute EventHandler onclose;
attribute EventHandler oncontextmenu;
//(Not implemented)attribute EventHandler oncuechange;
attribute EventHandler ondblclick;