aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/dom/bindings/codegen/HTMLTableColElement.webidl
diff options
context:
space:
mode:
authorTetsuharu OHZEKI <saneyuki.s.snyk@gmail.com>2013-08-13 15:54:44 +0900
committerTetsuharu OHZEKI <saneyuki.s.snyk@gmail.com>2013-08-24 00:25:17 +0900
commitc2391fe5ffe421004c8b0906301a19379bf238ab (patch)
tree0e5dc38c8a565bf1e8d190fd0ba3bda10a077fb1 /src/components/script/dom/bindings/codegen/HTMLTableColElement.webidl
parentce647eb80fa685a381829deb028c444583480c03 (diff)
downloadservo-c2391fe5ffe421004c8b0906301a19379bf238ab.tar.gz
servo-c2391fe5ffe421004c8b0906301a19379bf238ab.zip
Generate bindings for HTMLTableColElement.
Diffstat (limited to 'src/components/script/dom/bindings/codegen/HTMLTableColElement.webidl')
-rw-r--r--src/components/script/dom/bindings/codegen/HTMLTableColElement.webidl30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/components/script/dom/bindings/codegen/HTMLTableColElement.webidl b/src/components/script/dom/bindings/codegen/HTMLTableColElement.webidl
new file mode 100644
index 00000000000..c927541a3dc
--- /dev/null
+++ b/src/components/script/dom/bindings/codegen/HTMLTableColElement.webidl
@@ -0,0 +1,30 @@
+/* -*- 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 HTMLTableColElement : HTMLElement {
+ [SetterThrows]
+ attribute unsigned long span;
+};
+
+partial interface HTMLTableColElement {
+ [SetterThrows]
+ attribute DOMString align;
+ [SetterThrows]
+ attribute DOMString ch;
+ [SetterThrows]
+ attribute DOMString chOff;
+ [SetterThrows]
+ attribute DOMString vAlign;
+ [SetterThrows]
+ attribute DOMString width;
+};