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