aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/dom/bindings/codegen/HTMLFrameElement.webidl
diff options
context:
space:
mode:
authorJosh Matthews <josh@joshmatthews.net>2013-08-26 16:25:02 -0400
committerJosh Matthews <josh@joshmatthews.net>2013-08-26 16:25:02 -0400
commite552cfd4ce4e71095ca6302589b04d673c81dea4 (patch)
treea0690db1313cdfbda065bb1df4952145bfdc249d /src/components/script/dom/bindings/codegen/HTMLFrameElement.webidl
parent540993f196e95f7790482bd7678de3b05aa2ea5f (diff)
downloadservo-e552cfd4ce4e71095ca6302589b04d673c81dea4.tar.gz
servo-e552cfd4ce4e71095ca6302589b04d673c81dea4.zip
Generate bindings for HTMLFrameElement.
Diffstat (limited to 'src/components/script/dom/bindings/codegen/HTMLFrameElement.webidl')
-rw-r--r--src/components/script/dom/bindings/codegen/HTMLFrameElement.webidl34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/components/script/dom/bindings/codegen/HTMLFrameElement.webidl b/src/components/script/dom/bindings/codegen/HTMLFrameElement.webidl
new file mode 100644
index 00000000000..4a62c3f9bee
--- /dev/null
+++ b/src/components/script/dom/bindings/codegen/HTMLFrameElement.webidl
@@ -0,0 +1,34 @@
+/* -*- 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/#htmlframeelement
+ * © 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/#htmlframeelement
+interface HTMLFrameElement : HTMLElement {
+ [SetterThrows]
+ attribute DOMString name;
+ [SetterThrows]
+ attribute DOMString scrolling;
+ [SetterThrows]
+ attribute DOMString src;
+ [SetterThrows]
+ attribute DOMString frameBorder;
+ [SetterThrows]
+ attribute DOMString longDesc;
+ [SetterThrows]
+ attribute boolean noResize;
+ readonly attribute Document? contentDocument;
+ readonly attribute WindowProxy? contentWindow;
+
+ [TreatNullAs=EmptyString, SetterThrows] attribute DOMString marginHeight;
+ [TreatNullAs=EmptyString, SetterThrows] attribute DOMString marginWidth;
+};
+
+//HTMLFrameElement implements MozFrameLoaderOwner;