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 @@ -11501,8 +11501,12 @@ interface HTMLIFrameElement extends HTMLElement {
11501
11501
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/height)
11502
11502
*/
11503
11503
height: string;
11504
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/loading) */
11505
- loading: string;
11504
+ /**
11505
+ * Sets or retrieves the policy for loading iframe elements that are outside the viewport.
11506
+ *
11507
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/loading)
11508
+ */
11509
+ loading: "eager" | "lazy";
11506
11510
/**
11507
11511
* Sets or retrieves a URI to a long description of the object.
11508
11512
* @deprecated
@@ -29705,7 +29709,7 @@ type AnimationReplaceState = "active" | "persisted" | "removed";
29705
29709
type AppendMode = "segments" | "sequence";
29706
29710
type AttestationConveyancePreference = "direct" | "enterprise" | "indirect" | "none";
29707
29711
type AudioContextLatencyCategory = "balanced" | "interactive" | "playback";
29708
- type AudioContextState = "closed" | "running" | "suspended";
29712
+ type AudioContextState = "closed" | "interrupted" | " running" | "suspended";
29709
29713
type AudioSampleFormat = "f32" | "f32-planar" | "s16" | "s16-planar" | "s32" | "s32-planar" | "u8" | "u8-planar";
29710
29714
type AuthenticatorAttachment = "cross-platform" | "platform";
29711
29715
type AuthenticatorTransport = "ble" | "hybrid" | "internal" | "nfc" | "usb";
Original file line number Diff line number Diff line change @@ -11488,8 +11488,12 @@ interface HTMLIFrameElement extends HTMLElement {
11488
11488
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/height)
11489
11489
*/
11490
11490
height: string;
11491
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/loading) */
11492
- loading: string;
11491
+ /**
11492
+ * Sets or retrieves the policy for loading iframe elements that are outside the viewport.
11493
+ *
11494
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/loading)
11495
+ */
11496
+ loading: "eager" | "lazy";
11493
11497
/**
11494
11498
* Sets or retrieves a URI to a long description of the object.
11495
11499
* @deprecated
@@ -29683,7 +29687,7 @@ type AnimationReplaceState = "active" | "persisted" | "removed";
29683
29687
type AppendMode = "segments" | "sequence";
29684
29688
type AttestationConveyancePreference = "direct" | "enterprise" | "indirect" | "none";
29685
29689
type AudioContextLatencyCategory = "balanced" | "interactive" | "playback";
29686
- type AudioContextState = "closed" | "running" | "suspended";
29690
+ type AudioContextState = "closed" | "interrupted" | " running" | "suspended";
29687
29691
type AudioSampleFormat = "f32" | "f32-planar" | "s16" | "s16-planar" | "s32" | "s32-planar" | "u8" | "u8-planar";
29688
29692
type AuthenticatorAttachment = "cross-platform" | "platform";
29689
29693
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