File tree Expand file tree Collapse file tree 6 files changed +30
-16
lines changed Expand file tree Collapse file tree 6 files changed +30
-16
lines changed Original file line number Diff line number Diff line change @@ -11911,8 +11911,12 @@ interface HTMLIFrameElement extends HTMLElement {
11911
11911
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/height)
11912
11912
*/
11913
11913
height: string;
11914
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/loading) */
11915
- loading: string;
11914
+ /**
11915
+ * Sets or retrieves the policy for loading iframe elements that are outside the viewport.
11916
+ *
11917
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/loading)
11918
+ */
11919
+ loading: "eager" | "lazy";
11916
11920
/**
11917
11921
* Sets or retrieves a URI to a long description of the object.
11918
11922
* @deprecated
@@ -30664,7 +30668,7 @@ type AnimationReplaceState = "active" | "persisted" | "removed";
30664
30668
type AppendMode = "segments" | "sequence";
30665
30669
type AttestationConveyancePreference = "direct" | "enterprise" | "indirect" | "none";
30666
30670
type AudioContextLatencyCategory = "balanced" | "interactive" | "playback";
30667
- type AudioContextState = "closed" | "running" | "suspended";
30671
+ type AudioContextState = "closed" | "interrupted" | " running" | "suspended";
30668
30672
type AudioSampleFormat = "f32" | "f32-planar" | "s16" | "s16-planar" | "s32" | "s32-planar" | "u8" | "u8-planar";
30669
30673
type AuthenticatorAttachment = "cross-platform" | "platform";
30670
30674
type AuthenticatorTransport = "ble" | "hybrid" | "internal" | "nfc" | "usb";
Original file line number Diff line number Diff line change @@ -11898,8 +11898,12 @@ interface HTMLIFrameElement extends HTMLElement {
11898
11898
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/height)
11899
11899
*/
11900
11900
height: string;
11901
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/loading) */
11902
- loading: string;
11901
+ /**
11902
+ * Sets or retrieves the policy for loading iframe elements that are outside the viewport.
11903
+ *
11904
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/loading)
11905
+ */
11906
+ loading: "eager" | "lazy";
11903
11907
/**
11904
11908
* Sets or retrieves a URI to a long description of the object.
11905
11909
* @deprecated
@@ -30642,7 +30646,7 @@ type AnimationReplaceState = "active" | "persisted" | "removed";
30642
30646
type AppendMode = "segments" | "sequence";
30643
30647
type AttestationConveyancePreference = "direct" | "enterprise" | "indirect" | "none";
30644
30648
type AudioContextLatencyCategory = "balanced" | "interactive" | "playback";
30645
- type AudioContextState = "closed" | "running" | "suspended";
30649
+ type AudioContextState = "closed" | "interrupted" | " running" | "suspended";
30646
30650
type AudioSampleFormat = "f32" | "f32-planar" | "s16" | "s16-planar" | "s32" | "s32-planar" | "u8" | "u8-planar";
30647
30651
type AuthenticatorAttachment = "cross-platform" | "platform";
30648
30652
type AuthenticatorTransport = "ble" | "hybrid" | "internal" | "nfc" | "usb";
Original file line number Diff line number Diff line change 3
3
Some files in this directory are generated. Please do not edit them.
4
4
This specifically includes:
5
5
6
- * ` browser.webidl.preprocessed.json `
7
6
* ` idl/* `
8
7
* ` mdn/* `
9
8
Original file line number Diff line number Diff line change 927
927
"property" : {
928
928
"referrerPolicy" : {
929
929
"type" : " ReferrerPolicy"
930
+ },
931
+ "loading" : {
932
+ "name" : " loading" ,
933
+ "overrideType" : " \" eager\" | \" lazy\" "
930
934
}
931
935
}
932
936
}
Original file line number Diff line number Diff line change 1015
1015
"contentDocument" : {
1016
1016
"comment" : " Retrieves the document object of the page or frame."
1017
1017
},
1018
+ "loading" : {
1019
+ "comment" : " Sets or retrieves the policy for loading iframe elements that are outside the viewport."
1020
+ },
1018
1021
"longDesc" : {
1019
1022
"comment" : " Sets or retrieves a URI to a long description of the object."
1020
1023
}
You can’t perform that action at this time.
0 commit comments