diff options
author | bors-servo <release+servo@mozilla.com> | 2013-08-06 18:57:35 -0700 |
---|---|---|
committer | bors-servo <release+servo@mozilla.com> | 2013-08-06 18:57:35 -0700 |
commit | ff9e72a01351cd6407db8ead03df0b997e303053 (patch) | |
tree | ef25f969a8756f4bbec4dea05c846e76adebb80a /src/components/script/dom/bindings/codegen/HTMLDivElement.webidl | |
parent | 956646a73d6b71a522d23d3e4d6c8dcb9d2dc383 (diff) | |
parent | 8e2c39d2dd29aefbadd5284ec94a1a9187eccf92 (diff) | |
download | servo-ff9e72a01351cd6407db8ead03df0b997e303053.tar.gz servo-ff9e72a01351cd6407db8ead03df0b997e303053.zip |
auto merge of #679 : jdm/servo/morenodes, r=pcwalton
Nothing too exciting here.
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; +}; |