The HTMLIFrameElement interface provides special properties and
(beyond those of the web.dom.HTMLElement
interface it also
available to it by inheritance) for manipulating the layout and
of inline frame elements.
The HTMLIFrameElement interface provides special properties and (beyond those of the `web.dom.HTMLElement` interface it also available to it by inheritance) for manipulating the layout and of inline frame elements.
(align this)
Property.
Is a DOMString that specifies the alignment of the frame with to the surrounding context.
Property. Is a DOMString that specifies the alignment of the frame with to the surrounding context.
(allow this)
Property.
Is a list of origins the the frame is allowed to display content This attribute also accepts the values self and src which represent origin in the iframe's src attribute. The default value is src.
Property. Is a list of origins the the frame is allowed to display content This attribute also accepts the values self and src which represent origin in the iframe's src attribute. The default value is src.
(allow-payment-request this)
Property.
[Experimental]
The allowPaymentRequest property of the web.dom.HTMLIFrameElement
returns a js.Boolean
indicating whether the Payment Request
may be invoked on a cross-origin iframe.
var allow = htmlIFrameElement.allowPaymentRequest
See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLIFrameElement/allowPaymentRequest
Property. [Experimental] The allowPaymentRequest property of the `web.dom.HTMLIFrameElement` returns a `js.Boolean` indicating whether the Payment Request may be invoked on a cross-origin iframe. `var allow = htmlIFrameElement.allowPaymentRequest` See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLIFrameElement/allowPaymentRequest`
(allowfullscreen this)
Property.
Is a Boolean indicating whether the inline frame is willing to placed into full screen mode. See Using full-screen mode for
Property. Is a Boolean indicating whether the inline frame is willing to placed into full screen mode. See Using full-screen mode for
(content-document this)
Property.
[Read Only]
If the iframe and the iframe's parent document are Same Origin, a Document (that is, the active document in the inline frame's browsing context), else returns null.
See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLIFrameElement/contentDocument
Property. [Read Only] If the iframe and the iframe's parent document are Same Origin, a Document (that is, the active document in the inline frame's browsing context), else returns null. See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLIFrameElement/contentDocument`
(content-window this)
Property.
[Read Only]
The contentWindow property returns the Window object of an <iframe> You can use this Window object to access the iframe's document its internal DOM. This attribute is read-only, but its properties be manipulated like the global Window object.
See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLIFrameElement/contentWindow
Property. [Read Only] The contentWindow property returns the Window object of an <iframe> You can use this Window object to access the iframe's document its internal DOM. This attribute is read-only, but its properties be manipulated like the global Window object. See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLIFrameElement/contentWindow`
(csp this)
Property.
[Experimental]
The csp property of the web.dom.HTMLIFrameElement
interface
the Content Security Policy that an embedded document must agree
enforce upon itself.
var csp = HTMLIFrameElement.csp HTMLIFrameElement.csp = csp
See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLIFrameElement/csp
Property. [Experimental] The csp property of the `web.dom.HTMLIFrameElement` interface the Content Security Policy that an embedded document must agree enforce upon itself. `var csp = HTMLIFrameElement.csp HTMLIFrameElement.csp = csp` See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLIFrameElement/csp`
(feature-policy this)
Property.
[Read Only] [Experimental]
The featurePolicy read-only property of the web.dom.HTMLIFrameElement
returns the web.other.FeaturePolicy
interface which provides
simple API for introspecting the feature policies applied to
specific frame.
var policy = HTMLIFrameElement.featurePolicy
See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLIFrameElement/featurePolicy
Property. [Read Only] [Experimental] The featurePolicy read-only property of the `web.dom.HTMLIFrameElement` returns the `web.other.FeaturePolicy` interface which provides simple API for introspecting the feature policies applied to specific frame. `var policy = HTMLIFrameElement.featurePolicy` See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLIFrameElement/featurePolicy`
(frame-border this)
Property.
Is a DOMString that indicates whether to create borders between
Property. Is a DOMString that indicates whether to create borders between
(height this)
Property.
Is a DOMString that reflects the height HTML attribute, indicating height of the frame.
Property. Is a DOMString that reflects the height HTML attribute, indicating height of the frame.
(long-desc this)
Property.
Is a DOMString that contains the URI of a long description of frame.
Property. Is a DOMString that contains the URI of a long description of frame.
(margin-height this)
Property.
Is a DOMString being the height of the frame margin.
Property. Is a DOMString being the height of the frame margin.
(margin-width this)
Property.
Is a DOMString being the width of the frame margin.
Property. Is a DOMString being the width of the frame margin.
(name this)
Property.
Is a DOMString that reflects the name HTML attribute, containing name by which to refer to the frame.
Property. Is a DOMString that reflects the name HTML attribute, containing name by which to refer to the frame.
(policy this)
Property.
HTMLIFrameElement.policy was renamed into HTMLIFrameElement.featurePolicy being enabled by default in any browsers.
Property. HTMLIFrameElement.policy was renamed into HTMLIFrameElement.featurePolicy being enabled by default in any browsers.
(referrer-policy this)
Property.
The HTMLIFrameElement.referrerPolicy property reflects the HTML
attribute of the <iframe>
element defining which referrer is
when fetching the resource.
refStr = iframeElt.referrerPolicy; iframeElt.referrerPolicy = refStr;
See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLIFrameElement/referrerPolicy
Property. The HTMLIFrameElement.referrerPolicy property reflects the HTML attribute of the `<iframe>` element defining which referrer is when fetching the resource. `refStr = iframeElt.referrerPolicy; iframeElt.referrerPolicy = refStr;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLIFrameElement/referrerPolicy`
(sandbox this)
Property.
Is a DOMSettableTokenList that reflects the sandbox HTML attribute, extra restrictions on the behavior of the nested content.
Property. Is a DOMSettableTokenList that reflects the sandbox HTML attribute, extra restrictions on the behavior of the nested content.
(scrolling this)
Property.
Is a DOMString that indicates whether the browser should provide for the frame.
Property. Is a DOMString that indicates whether the browser should provide for the frame.
(set-align! this val)
Property.
Is a DOMString that specifies the alignment of the frame with to the surrounding context.
Property. Is a DOMString that specifies the alignment of the frame with to the surrounding context.
(set-allow! this val)
Property.
Is a list of origins the the frame is allowed to display content This attribute also accepts the values self and src which represent origin in the iframe's src attribute. The default value is src.
Property. Is a list of origins the the frame is allowed to display content This attribute also accepts the values self and src which represent origin in the iframe's src attribute. The default value is src.
(set-allow-payment-request! this val)
Property.
[Experimental]
The allowPaymentRequest property of the web.dom.HTMLIFrameElement
returns a js.Boolean
indicating whether the Payment Request
may be invoked on a cross-origin iframe.
var allow = htmlIFrameElement.allowPaymentRequest
See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLIFrameElement/allowPaymentRequest
Property. [Experimental] The allowPaymentRequest property of the `web.dom.HTMLIFrameElement` returns a `js.Boolean` indicating whether the Payment Request may be invoked on a cross-origin iframe. `var allow = htmlIFrameElement.allowPaymentRequest` See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLIFrameElement/allowPaymentRequest`
(set-allowfullscreen! this val)
Property.
Is a Boolean indicating whether the inline frame is willing to placed into full screen mode. See Using full-screen mode for
Property. Is a Boolean indicating whether the inline frame is willing to placed into full screen mode. See Using full-screen mode for
(set-csp! this val)
Property.
[Experimental]
The csp property of the web.dom.HTMLIFrameElement
interface
the Content Security Policy that an embedded document must agree
enforce upon itself.
var csp = HTMLIFrameElement.csp HTMLIFrameElement.csp = csp
See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLIFrameElement/csp
Property. [Experimental] The csp property of the `web.dom.HTMLIFrameElement` interface the Content Security Policy that an embedded document must agree enforce upon itself. `var csp = HTMLIFrameElement.csp HTMLIFrameElement.csp = csp` See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLIFrameElement/csp`
(set-frame-border! this val)
Property.
Is a DOMString that indicates whether to create borders between
Property. Is a DOMString that indicates whether to create borders between
(set-height! this val)
Property.
Is a DOMString that reflects the height HTML attribute, indicating height of the frame.
Property. Is a DOMString that reflects the height HTML attribute, indicating height of the frame.
(set-long-desc! this val)
Property.
Is a DOMString that contains the URI of a long description of frame.
Property. Is a DOMString that contains the URI of a long description of frame.
(set-margin-height! this val)
Property.
Is a DOMString being the height of the frame margin.
Property. Is a DOMString being the height of the frame margin.
(set-margin-width! this val)
Property.
Is a DOMString being the width of the frame margin.
Property. Is a DOMString being the width of the frame margin.
(set-name! this val)
Property.
Is a DOMString that reflects the name HTML attribute, containing name by which to refer to the frame.
Property. Is a DOMString that reflects the name HTML attribute, containing name by which to refer to the frame.
(set-nfc-focus this & args)
Method.
[Non Standard]
The setNfcFocus() method of the web.dom.HTMLIFrameElement
interface
whether an <iframe>
can receive an NFC event.
myIFrame.setNfcFocus(true);
See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLIFrameElement/setNfcFocus
Method. [Non Standard] The setNfcFocus() method of the `web.dom.HTMLIFrameElement` interface whether an `<iframe>` can receive an NFC event. `myIFrame.setNfcFocus(true);` See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLIFrameElement/setNfcFocus`
(set-policy! this val)
Property.
HTMLIFrameElement.policy was renamed into HTMLIFrameElement.featurePolicy being enabled by default in any browsers.
Property. HTMLIFrameElement.policy was renamed into HTMLIFrameElement.featurePolicy being enabled by default in any browsers.
(set-referrer-policy! this val)
Property.
The HTMLIFrameElement.referrerPolicy property reflects the HTML
attribute of the <iframe>
element defining which referrer is
when fetching the resource.
refStr = iframeElt.referrerPolicy; iframeElt.referrerPolicy = refStr;
See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLIFrameElement/referrerPolicy
Property. The HTMLIFrameElement.referrerPolicy property reflects the HTML attribute of the `<iframe>` element defining which referrer is when fetching the resource. `refStr = iframeElt.referrerPolicy; iframeElt.referrerPolicy = refStr;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLIFrameElement/referrerPolicy`
(set-sandbox! this val)
Property.
Is a DOMSettableTokenList that reflects the sandbox HTML attribute, extra restrictions on the behavior of the nested content.
Property. Is a DOMSettableTokenList that reflects the sandbox HTML attribute, extra restrictions on the behavior of the nested content.
(set-scrolling! this val)
Property.
Is a DOMString that indicates whether the browser should provide for the frame.
Property. Is a DOMString that indicates whether the browser should provide for the frame.
(set-src! this val)
Property.
The HTMLIFrameElement.src property reflects the HTML referrerpolicy
of the <iframe>
element defining which referrer is sent when
the resource.
refStr = iframeElt.src; iframeElt.src= refStr;
See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLIFrameElement/src
Property. The HTMLIFrameElement.src property reflects the HTML referrerpolicy of the `<iframe>` element defining which referrer is sent when the resource. `refStr = iframeElt.src; iframeElt.src= refStr;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLIFrameElement/src`
(set-srcdoc! this val)
Property.
The srcdoc property of the web.dom.HTMLIFrameElement
specifies
content of the page.
See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLIFrameElement/srcdoc
Property. The srcdoc property of the `web.dom.HTMLIFrameElement` specifies content of the page. See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLIFrameElement/srcdoc`
(set-width! this val)
Property.
Is a DOMString that reflects the width HTML attribute, indicating width of the frame.
Property. Is a DOMString that reflects the width HTML attribute, indicating width of the frame.
(src this)
Property.
The HTMLIFrameElement.src property reflects the HTML referrerpolicy
of the <iframe>
element defining which referrer is sent when
the resource.
refStr = iframeElt.src; iframeElt.src= refStr;
See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLIFrameElement/src
Property. The HTMLIFrameElement.src property reflects the HTML referrerpolicy of the `<iframe>` element defining which referrer is sent when the resource. `refStr = iframeElt.src; iframeElt.src= refStr;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLIFrameElement/src`
(srcdoc this)
Property.
The srcdoc property of the web.dom.HTMLIFrameElement
specifies
content of the page.
See also: https://developer.mozilla.org/en-US/docs/Web/API/HTMLIFrameElement/srcdoc
Property. The srcdoc property of the `web.dom.HTMLIFrameElement` specifies content of the page. See also: `https://developer.mozilla.org/en-US/docs/Web/API/HTMLIFrameElement/srcdoc`
(width this)
Property.
Is a DOMString that reflects the width HTML attribute, indicating width of the frame.
Property. Is a DOMString that reflects the width HTML attribute, indicating width of the frame.
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close