File tree Expand file tree Collapse file tree 5 files changed +30
-15
lines changed Expand file tree Collapse file tree 5 files changed +30
-15
lines changed Original file line number Diff line number Diff line change @@ -11501,8 +11501,12 @@ interface HTMLIFrameElement extends HTMLElement {
1150111501 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/height)
1150211502 */
1150311503 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";
1150611510 /**
1150711511 * Sets or retrieves a URI to a long description of the object.
1150811512 * @deprecated
@@ -29705,7 +29709,7 @@ type AnimationReplaceState = "active" | "persisted" | "removed";
2970529709type AppendMode = "segments" | "sequence";
2970629710type AttestationConveyancePreference = "direct" | "enterprise" | "indirect" | "none";
2970729711type AudioContextLatencyCategory = "balanced" | "interactive" | "playback";
29708- type AudioContextState = "closed" | "running" | "suspended";
29712+ type AudioContextState = "closed" | "interrupted" | " running" | "suspended";
2970929713type AudioSampleFormat = "f32" | "f32-planar" | "s16" | "s16-planar" | "s32" | "s32-planar" | "u8" | "u8-planar";
2971029714type AuthenticatorAttachment = "cross-platform" | "platform";
2971129715type AuthenticatorTransport = "ble" | "hybrid" | "internal" | "nfc" | "usb";
Original file line number Diff line number Diff line change @@ -11488,8 +11488,12 @@ interface HTMLIFrameElement extends HTMLElement {
1148811488 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/height)
1148911489 */
1149011490 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";
1149311497 /**
1149411498 * Sets or retrieves a URI to a long description of the object.
1149511499 * @deprecated
@@ -29683,7 +29687,7 @@ type AnimationReplaceState = "active" | "persisted" | "removed";
2968329687type AppendMode = "segments" | "sequence";
2968429688type AttestationConveyancePreference = "direct" | "enterprise" | "indirect" | "none";
2968529689type AudioContextLatencyCategory = "balanced" | "interactive" | "playback";
29686- type AudioContextState = "closed" | "running" | "suspended";
29690+ type AudioContextState = "closed" | "interrupted" | " running" | "suspended";
2968729691type AudioSampleFormat = "f32" | "f32-planar" | "s16" | "s16-planar" | "s32" | "s32-planar" | "u8" | "u8-planar";
2968829692type AuthenticatorAttachment = "cross-platform" | "platform";
2968929693type AuthenticatorTransport = "ble" | "hybrid" | "internal" | "nfc" | "usb";
Original file line number Diff line number Diff line change 927927 "property" : {
928928 "referrerPolicy" : {
929929 "type" : " ReferrerPolicy"
930+ },
931+ "loading" : {
932+ "name" : " loading" ,
933+ "overrideType" : " \" eager\" | \" lazy\" "
930934 }
931935 }
932936 }
Original file line number Diff line number Diff line change 10151015 "contentDocument" : {
10161016 "comment" : " Retrieves the document object of the page or frame."
10171017 },
1018+ "loading" : {
1019+ "comment" : " Sets or retrieves the policy for loading iframe elements that are outside the viewport."
1020+ },
10181021 "longDesc" : {
10191022 "comment" : " Sets or retrieves a URI to a long description of the object."
10201023 }
You can’t perform that action at this time.
0 commit comments