summaryrefslogtreecommitdiffstats
path: root/dom/webidl/HTMLDialogElement.webidl
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2020-01-09 13:07:56 +0000
committerGitHub <noreply@github.com>2020-01-09 13:07:56 +0000
commit29bf28ca34cb3061d2a6c38f60b01f2d7ca1e1e2 (patch)
tree3542eb0e53d20ba44a96a0b6a801d8a77ea8fb8f /dom/webidl/HTMLDialogElement.webidl
parentd79cc5fb49131cba4ed1aa86bb13de468a718565 (diff)
parent52bda2a828364a9a2b3847a005587fa0ea952b30 (diff)
downloadUXP-29bf28ca34cb3061d2a6c38f60b01f2d7ca1e1e2.tar
UXP-29bf28ca34cb3061d2a6c38f60b01f2d7ca1e1e2.tar.gz
UXP-29bf28ca34cb3061d2a6c38f60b01f2d7ca1e1e2.tar.lz
UXP-29bf28ca34cb3061d2a6c38f60b01f2d7ca1e1e2.tar.xz
UXP-29bf28ca34cb3061d2a6c38f60b01f2d7ca1e1e2.zip
Merge pull request #1347 from g4jc/html5_dialog
Implement HMTL5 <dialog>
Diffstat (limited to 'dom/webidl/HTMLDialogElement.webidl')
-rw-r--r--dom/webidl/HTMLDialogElement.webidl23
1 files changed, 23 insertions, 0 deletions
diff --git a/dom/webidl/HTMLDialogElement.webidl b/dom/webidl/HTMLDialogElement.webidl
new file mode 100644
index 000000000..b6cdbacf6
--- /dev/null
+++ b/dom/webidl/HTMLDialogElement.webidl
@@ -0,0 +1,23 @@
+/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this file,
+ * You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * The origin of this IDL file is
+ * https://html.spec.whatwg.org/multipage/forms.html#the-dialog-element
+ *
+ * © Copyright 2004-2011 Apple Computer, Inc., Mozilla Foundation, and
+ * Opera Software ASA. You are granted a license to use, reproduce
+ * and create derivative works of this document.
+ */
+
+[Pref="dom.dialog_element.enabled"]
+interface HTMLDialogElement : HTMLElement {
+ [SetterThrows] attribute boolean open;
+ attribute DOMString returnValue;
+
+ void show();
+ [Throws] void showModal();
+
+ void close(optional DOMString returnValue);
+};