1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dom/webidl/HTMLFrameElement.webidl Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,34 @@ 1.4 +/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 1.5 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.6 + * License, v. 2.0. If a copy of the MPL was not distributed with this file, 1.7 + * You can obtain one at http://mozilla.org/MPL/2.0/. 1.8 + * 1.9 + * The origin of this IDL file is 1.10 + * http://www.whatwg.org/specs/web-apps/current-work/#htmlframeelement 1.11 + * © Copyright 2004-2011 Apple Computer, Inc., Mozilla Foundation, and 1.12 + * Opera Software ASA. You are granted a license to use, reproduce 1.13 + * and create derivative works of this document. 1.14 + */ 1.15 + 1.16 +// http://www.whatwg.org/specs/web-apps/current-work/#htmlframeelement 1.17 +interface HTMLFrameElement : HTMLElement { 1.18 + [SetterThrows] 1.19 + attribute DOMString name; 1.20 + [SetterThrows] 1.21 + attribute DOMString scrolling; 1.22 + [SetterThrows] 1.23 + attribute DOMString src; 1.24 + [SetterThrows] 1.25 + attribute DOMString frameBorder; 1.26 + [SetterThrows] 1.27 + attribute DOMString longDesc; 1.28 + [SetterThrows] 1.29 + attribute boolean noResize; 1.30 + readonly attribute Document? contentDocument; 1.31 + readonly attribute WindowProxy? contentWindow; 1.32 + 1.33 + [TreatNullAs=EmptyString, SetterThrows] attribute DOMString marginHeight; 1.34 + [TreatNullAs=EmptyString, SetterThrows] attribute DOMString marginWidth; 1.35 +}; 1.36 + 1.37 +HTMLFrameElement implements MozFrameLoaderOwner;