File tree Expand file tree Collapse file tree 4 files changed +19
-4
lines changed Expand file tree Collapse file tree 4 files changed +19
-4
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
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
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