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-payment-request this)
Property.
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. 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`
(content-window this)
Property.
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. 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.
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. 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.
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. 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`
(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`
(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-payment-request! this val)
Property.
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. 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-csp! this val)
Property.
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. 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-feature-policy! this val)
Property.
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. 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`
(set-nfc-focus this & args)
Method.
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. 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`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close