diff options
author | Josh Matthews <josh@joshmatthews.net> | 2013-08-06 16:08:38 -0400 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2013-08-06 19:03:09 -0400 |
commit | 65a33f60e592dc3043379d95f8c3314e5bee74fa (patch) | |
tree | 7e6527fc3754b5b57e1c4b1fd4bc71759689e272 /src/components/script/dom/bindings/codegen/HTMLDivElement.webidl | |
parent | 08ed6d318e0ae79e3994b00a6e09cf3f2f69bd21 (diff) | |
download | servo-65a33f60e592dc3043379d95f8c3314e5bee74fa.tar.gz servo-65a33f60e592dc3043379d95f8c3314e5bee74fa.zip |
Generate bindings for HTMLDivElement, and pass abstract type to methods that need access to the opaque wrappers.
Diffstat (limited to 'src/components/script/dom/bindings/codegen/HTMLDivElement.webidl')
-rw-r--r-- | src/components/script/dom/bindings/codegen/HTMLDivElement.webidl | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/components/script/dom/bindings/codegen/HTMLDivElement.webidl b/src/components/script/dom/bindings/codegen/HTMLDivElement.webidl new file mode 100644 index 00000000000..f50e2aad003 --- /dev/null +++ b/src/components/script/dom/bindings/codegen/HTMLDivElement.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 HTMLDivElement : HTMLElement {}; + +partial interface HTMLDivElement { + [SetterThrows] + attribute DOMString align; +}; |