2018-09-13 23:04:55 +03:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2013-02-18 15:29:43 +04:00
|
|
|
/* 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
|
2019-10-17 18:38:39 +03:00
|
|
|
[Exposed=Window]
|
2013-02-18 15:29:43 +04:00
|
|
|
interface HTMLFrameElement : HTMLElement {
|
2019-10-17 18:38:39 +03:00
|
|
|
[HTMLConstructor] constructor();
|
|
|
|
|
2017-06-29 17:26:00 +03:00
|
|
|
[CEReactions, SetterThrows]
|
2013-02-18 15:29:43 +04:00
|
|
|
attribute DOMString name;
|
2017-06-29 17:26:00 +03:00
|
|
|
[CEReactions, SetterThrows]
|
2013-02-18 15:29:43 +04:00
|
|
|
attribute DOMString scrolling;
|
2017-12-21 01:43:18 +03:00
|
|
|
[CEReactions, SetterNeedsSubjectPrincipal=NonSystem, SetterThrows]
|
2013-02-18 15:29:43 +04:00
|
|
|
attribute DOMString src;
|
2017-06-29 17:26:00 +03:00
|
|
|
[CEReactions, SetterThrows]
|
2013-02-18 15:29:43 +04:00
|
|
|
attribute DOMString frameBorder;
|
2017-06-29 17:26:00 +03:00
|
|
|
[CEReactions, SetterThrows]
|
2013-02-18 15:29:43 +04:00
|
|
|
attribute DOMString longDesc;
|
2017-06-29 17:26:00 +03:00
|
|
|
[CEReactions, SetterThrows]
|
2013-02-18 15:29:43 +04:00
|
|
|
attribute boolean noResize;
|
2016-10-03 11:34:14 +03:00
|
|
|
[NeedsSubjectPrincipal]
|
2013-02-18 15:29:43 +04:00
|
|
|
readonly attribute Document? contentDocument;
|
|
|
|
readonly attribute WindowProxy? contentWindow;
|
|
|
|
|
2019-03-02 07:22:05 +03:00
|
|
|
[CEReactions, SetterThrows]
|
|
|
|
attribute [TreatNullAs=EmptyString] DOMString marginHeight;
|
|
|
|
[CEReactions, SetterThrows]
|
|
|
|
attribute [TreatNullAs=EmptyString] DOMString marginWidth;
|
2013-02-18 15:29:43 +04:00
|
|
|
};
|
2013-02-26 21:02:32 +04:00
|
|
|
|
2019-09-24 18:22:26 +03:00
|
|
|
HTMLFrameElement includes MozFrameLoaderOwner;
|