aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/dom/bindings/codegen/HTMLTimeElement.webidl
diff options
context:
space:
mode:
authorYoungsoo Son <ysoo.son@samsung.com>2013-08-12 13:42:44 +0900
committerJosh Matthews <josh@joshmatthews.net>2013-08-22 16:20:28 -0400
commit57f3ce8f811d8f7f1a74cac4cc5573f76c19169c (patch)
tree8c4abc848de6004311a42069a55044a025d36f3b /src/components/script/dom/bindings/codegen/HTMLTimeElement.webidl
parentc0935cba7255e01ed58e11bbb61f87c2c04c9602 (diff)
downloadservo-57f3ce8f811d8f7f1a74cac4cc5573f76c19169c.tar.gz
servo-57f3ce8f811d8f7f1a74cac4cc5573f76c19169c.zip
Generate bindings for HTMLTimeElement
Diffstat (limited to 'src/components/script/dom/bindings/codegen/HTMLTimeElement.webidl')
-rw-r--r--src/components/script/dom/bindings/codegen/HTMLTimeElement.webidl13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/components/script/dom/bindings/codegen/HTMLTimeElement.webidl b/src/components/script/dom/bindings/codegen/HTMLTimeElement.webidl
new file mode 100644
index 00000000000..517ca9981ee
--- /dev/null
+++ b/src/components/script/dom/bindings/codegen/HTMLTimeElement.webidl
@@ -0,0 +1,13 @@
+/* -*- 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
+ * http://www.whatwg.org/specs/web-apps/current-work/multipage/text-level-semantics.html#the-time-element
+ */
+
+interface HTMLTimeElement : HTMLElement {
+ [SetterThrows]
+ attribute DOMString dateTime;
+};