aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/webidls/HTMLDetailsElement.webidl
diff options
context:
space:
mode:
authorLanza <dev@lanza.fr>2016-01-11 12:46:39 +0100
committerLanza <dev@lanza.fr>2016-01-20 16:15:37 +0100
commitcfc3500dbf9f1dd9b966c4010fb01b21bfd5d80b (patch)
treea1a5495ba76bfa69a09d886c4c4709053df1a9e4 /components/script/dom/webidls/HTMLDetailsElement.webidl
parent6663f28f0de308c9365b360cd8ad9ee9e43127ee (diff)
downloadservo-cfc3500dbf9f1dd9b966c4010fb01b21bfd5d80b.tar.gz
servo-cfc3500dbf9f1dd9b966c4010fb01b21bfd5d80b.zip
Implement HTMLDetailsElement. Fixes #9216
Diffstat (limited to 'components/script/dom/webidls/HTMLDetailsElement.webidl')
-rw-r--r--components/script/dom/webidls/HTMLDetailsElement.webidl9
1 files changed, 9 insertions, 0 deletions
diff --git a/components/script/dom/webidls/HTMLDetailsElement.webidl b/components/script/dom/webidls/HTMLDetailsElement.webidl
new file mode 100644
index 00000000000..062444d8312
--- /dev/null
+++ b/components/script/dom/webidls/HTMLDetailsElement.webidl
@@ -0,0 +1,9 @@
+/* -*- 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/. */
+
+// https://html.spec.whatwg.org/multipage/#htmldetailselement
+interface HTMLDetailsElement : HTMLElement {
+ attribute boolean open;
+};