diff options
author | Yusuke Suzuki <utatane.tea@gmail.com> | 2013-08-08 01:48:02 +0900 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2013-08-09 16:41:25 -0400 |
commit | 6f2c24eca7e944c904360b66521c453bb22fa5dc (patch) | |
tree | 4052ee0c0991d851c42470270b04666c6778bbe9 /src/components/script/dom/bindings/codegen/HTMLTitleElement.webidl | |
parent | 2ab430b9b15b7876ddd4fbbf7a261776030811fe (diff) | |
download | servo-6f2c24eca7e944c904360b66521c453bb22fa5dc.tar.gz servo-6f2c24eca7e944c904360b66521c453bb22fa5dc.zip |
Generate bindings for HTMLTitleElement
Diffstat (limited to 'src/components/script/dom/bindings/codegen/HTMLTitleElement.webidl')
-rw-r--r-- | src/components/script/dom/bindings/codegen/HTMLTitleElement.webidl | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/components/script/dom/bindings/codegen/HTMLTitleElement.webidl b/src/components/script/dom/bindings/codegen/HTMLTitleElement.webidl new file mode 100644 index 00000000000..e695d8421a5 --- /dev/null +++ b/src/components/script/dom/bindings/codegen/HTMLTitleElement.webidl @@ -0,0 +1,13 @@ +/* -*- 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-title-element + */ + +interface HTMLTitleElement : HTMLElement { + [SetterThrows] + attribute DOMString text; +}; |