diff options
author | Josh Matthews <josh@joshmatthews.net> | 2013-08-28 01:39:38 -0400 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2013-08-28 01:39:38 -0400 |
commit | 4c928102911dd9aae2cc7230cc3614d0509c4905 (patch) | |
tree | 1b2c8563af8b9c1b582dbe7831c3e7a1d921a1a3 /src/components/script/dom/bindings/codegen/HTMLModElement.webidl | |
parent | 35a5565f51f0101c253decf9d93dc5e6f2262864 (diff) | |
download | servo-4c928102911dd9aae2cc7230cc3614d0509c4905.tar.gz servo-4c928102911dd9aae2cc7230cc3614d0509c4905.zip |
Generate bindings for HTMLModElement.
Diffstat (limited to 'src/components/script/dom/bindings/codegen/HTMLModElement.webidl')
-rw-r--r-- | src/components/script/dom/bindings/codegen/HTMLModElement.webidl | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/components/script/dom/bindings/codegen/HTMLModElement.webidl b/src/components/script/dom/bindings/codegen/HTMLModElement.webidl new file mode 100644 index 00000000000..45086ccebbf --- /dev/null +++ b/src/components/script/dom/bindings/codegen/HTMLModElement.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/#attributes-common-to-ins-and-del-elements + * © 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/#attributes-common-to-ins-and-del-elements +interface HTMLModElement : HTMLElement { + [SetterThrows, Pure] + attribute DOMString cite; + [SetterThrows, Pure] + attribute DOMString dateTime; +}; |