diff options
author | Josh Matthews <josh@joshmatthews.net> | 2013-08-26 16:36:24 -0400 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2013-08-26 16:36:24 -0400 |
commit | e71b3e67a458136a439ec9ef82bac94cfecb5411 (patch) | |
tree | 298af16c02b24543609090a9b4302e813f9b504e /src/components/script/dom/bindings/codegen/HTMLFrameSetElement.webidl | |
parent | e552cfd4ce4e71095ca6302589b04d673c81dea4 (diff) | |
download | servo-e71b3e67a458136a439ec9ef82bac94cfecb5411.tar.gz servo-e71b3e67a458136a439ec9ef82bac94cfecb5411.zip |
Generate bindings for HTMLFrameSetElement.
Diffstat (limited to 'src/components/script/dom/bindings/codegen/HTMLFrameSetElement.webidl')
-rw-r--r-- | src/components/script/dom/bindings/codegen/HTMLFrameSetElement.webidl | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/components/script/dom/bindings/codegen/HTMLFrameSetElement.webidl b/src/components/script/dom/bindings/codegen/HTMLFrameSetElement.webidl new file mode 100644 index 00000000000..6cc4d98cea1 --- /dev/null +++ b/src/components/script/dom/bindings/codegen/HTMLFrameSetElement.webidl @@ -0,0 +1,21 @@ +/* -*- 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 HTMLFrameSetElement : HTMLElement { + [SetterThrows] + attribute DOMString cols; + [SetterThrows] + attribute DOMString rows; +}; + +//HTMLFrameSetElement implements WindowEventHandlers; |