aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/dom/bindings/codegen/HTMLTableCaptionElement.webidl
diff options
context:
space:
mode:
authorbors-servo <release+servo@mozilla.com>2013-08-23 00:21:30 -0700
committerbors-servo <release+servo@mozilla.com>2013-08-23 00:21:30 -0700
commitd6d03ac064e9acfe4f374aac22e2417a03746de9 (patch)
tree98470acc6cb40a55ccf45fc188d4937da4735633 /src/components/script/dom/bindings/codegen/HTMLTableCaptionElement.webidl
parentc97f97557a8058a2b8e78971d4a1cc099cc1c0a7 (diff)
parent75ccbdb6122d80faa89a0d7ddf49770e87578ab1 (diff)
downloadservo-d6d03ac064e9acfe4f374aac22e2417a03746de9.tar.gz
servo-d6d03ac064e9acfe4f374aac22e2417a03746de9.zip
auto merge of #765 : jdm/servo/linkelem, r=jdm
Rebase of #716, #717, and #718.
Diffstat (limited to 'src/components/script/dom/bindings/codegen/HTMLTableCaptionElement.webidl')
-rw-r--r--src/components/script/dom/bindings/codegen/HTMLTableCaptionElement.webidl19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/components/script/dom/bindings/codegen/HTMLTableCaptionElement.webidl b/src/components/script/dom/bindings/codegen/HTMLTableCaptionElement.webidl
new file mode 100644
index 00000000000..256713372e3
--- /dev/null
+++ b/src/components/script/dom/bindings/codegen/HTMLTableCaptionElement.webidl
@@ -0,0 +1,19 @@
+/* -*- 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/
+ *
+ * ⓒ 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.
+ */
+
+interface HTMLTableCaptionElement : HTMLElement {};
+
+partial interface HTMLTableCaptionElement {
+ [SetterThrows]
+ attribute DOMString align;
+};