diff options
author | Youngsoo Son <ysoo.son@samsung.com> | 2013-08-12 13:20:41 +0900 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2013-08-22 16:20:20 -0400 |
commit | c0935cba7255e01ed58e11bbb61f87c2c04c9602 (patch) | |
tree | dbed132522c9f32b49da97f5d9c94c7ec5ea173e /src/components/script/dom/bindings/codegen/HTMLTableCaptionElement.webidl | |
parent | 1c087ab5076bbc1cdc04c46bc288ad1b2a865844 (diff) | |
download | servo-c0935cba7255e01ed58e11bbb61f87c2c04c9602.tar.gz servo-c0935cba7255e01ed58e11bbb61f87c2c04c9602.zip |
Generate bindings for HTMLTableCaptionElement
Diffstat (limited to 'src/components/script/dom/bindings/codegen/HTMLTableCaptionElement.webidl')
-rw-r--r-- | src/components/script/dom/bindings/codegen/HTMLTableCaptionElement.webidl | 19 |
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; +}; |