diff options
author | bors-servo <release+servo@mozilla.com> | 2013-08-09 07:49:39 -0700 |
---|---|---|
committer | bors-servo <release+servo@mozilla.com> | 2013-08-09 07:49:39 -0700 |
commit | ebb4f3b3d1ed2e7904cb756394ca883a0a47f7a7 (patch) | |
tree | 965977d58a7891c2e2c28d5057e45f1c7942cc6a /src/components/script/dom/bindings/codegen/HTMLBRElement.webidl | |
parent | 73e7b6519b64160c802acd5175c01aacfd0daba6 (diff) | |
parent | bc49686c3b75a756e890d2a8f2040b7f294e8d21 (diff) | |
download | servo-ebb4f3b3d1ed2e7904cb756394ca883a0a47f7a7.tar.gz servo-ebb4f3b3d1ed2e7904cb756394ca883a0a47f7a7.zip |
auto merge of #692 : recrack/servo/brelement, r=jdm
Diffstat (limited to 'src/components/script/dom/bindings/codegen/HTMLBRElement.webidl')
-rw-r--r-- | src/components/script/dom/bindings/codegen/HTMLBRElement.webidl | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/components/script/dom/bindings/codegen/HTMLBRElement.webidl b/src/components/script/dom/bindings/codegen/HTMLBRElement.webidl new file mode 100644 index 00000000000..66b0e717f2e --- /dev/null +++ b/src/components/script/dom/bindings/codegen/HTMLBRElement.webidl @@ -0,0 +1,22 @@ +/* -*- 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/#the-br-element + * http://www.whatwg.org/specs/web-apps/current-work/#other-elements,-attributes-and-apis + * + * © 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. + */ + +// http://www.whatwg.org/specs/web-apps/current-work/#the-br-element +interface HTMLBRElement : HTMLElement {}; + +// http://www.whatwg.org/specs/web-apps/current-work/#other-elements,-attributes-and-apis +partial interface HTMLBRElement { + [SetterThrows] + attribute DOMString clear; +}; |