aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/webidls/HTMLDialogElement.webidl
diff options
context:
space:
mode:
authorclstl <reamles@gmail.com>2016-08-13 16:17:03 +0300
committerclstl <reamles@gmail.com>2016-08-25 16:13:30 +0300
commitaa5edd111825eccd7534bd0b1b354f10381931a9 (patch)
tree3a6c20d760600e0591e9a6c6fbcf1504fa86ce1d /components/script/dom/webidls/HTMLDialogElement.webidl
parentd29f61af317d3ab9e8233f0327c25b4925b4f053 (diff)
downloadservo-aa5edd111825eccd7534bd0b1b354f10381931a9.tar.gz
servo-aa5edd111825eccd7534bd0b1b354f10381931a9.zip
Implements HTMLDialogElement#close
Diffstat (limited to 'components/script/dom/webidls/HTMLDialogElement.webidl')
-rw-r--r--components/script/dom/webidls/HTMLDialogElement.webidl2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/webidls/HTMLDialogElement.webidl b/components/script/dom/webidls/HTMLDialogElement.webidl
index 78a14e1e2a0..0ac76a0465e 100644
--- a/components/script/dom/webidls/HTMLDialogElement.webidl
+++ b/components/script/dom/webidls/HTMLDialogElement.webidl
@@ -8,5 +8,5 @@ interface HTMLDialogElement : HTMLElement {
attribute DOMString returnValue;
//void show(optional (MouseEvent or Element) anchor);
//void showModal(optional (MouseEvent or Element) anchor);
- //void close(optional DOMString returnValue);
+ void close(optional DOMString returnValue);
};