summaryrefslogtreecommitdiffstats
path: root/dom/webidl/HTMLDialogElement.webidl
diff options
context:
space:
mode:
Diffstat (limited to 'dom/webidl/HTMLDialogElement.webidl')
-rw-r--r--dom/webidl/HTMLDialogElement.webidl10
1 files changed, 6 insertions, 4 deletions
diff --git a/dom/webidl/HTMLDialogElement.webidl b/dom/webidl/HTMLDialogElement.webidl
index b6cdbacf6..563740c87 100644
--- a/dom/webidl/HTMLDialogElement.webidl
+++ b/dom/webidl/HTMLDialogElement.webidl
@@ -13,11 +13,13 @@
[Pref="dom.dialog_element.enabled"]
interface HTMLDialogElement : HTMLElement {
- [SetterThrows] attribute boolean open;
+ [CEReactions, SetterThrows]
+ attribute boolean open;
attribute DOMString returnValue;
-
+ [CEReactions]
void show();
- [Throws] void showModal();
-
+ [CEReactions, Throws]
+ void showModal();
+ [CEReactions]
void close(optional DOMString returnValue);
};