@@ -10740,6 +10740,7 @@ interface HTMLIFrameElement extends HTMLElement {
1074010740 */
1074110741 align: string;
1074210742 allow: string;
10743+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/allowFullscreen) */
1074310744 allowFullscreen: boolean;
1074410745 /**
1074510746 * Retrieves the document object of the page or frame.
@@ -10766,6 +10767,7 @@ interface HTMLIFrameElement extends HTMLElement {
1076610767 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/height)
1076710768 */
1076810769 height: string;
10770+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/loading) */
1076910771 loading: string;
1077010772 /**
1077110773 * Sets or retrieves a URI to a long description of the object.
@@ -11688,16 +11690,31 @@ declare var HTMLMenuElement: {
1168811690 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMetaElement)
1168911691 */
1169011692interface HTMLMetaElement extends HTMLElement {
11691- /** Gets or sets meta-information to associate with httpEquiv or name. */
11693+ /**
11694+ * Gets or sets meta-information to associate with httpEquiv or name.
11695+ *
11696+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMetaElement/content)
11697+ */
1169211698 content: string;
11693- /** Gets or sets information used to bind the value of a content attribute of a meta element to an HTTP response header. */
11699+ /**
11700+ * Gets or sets information used to bind the value of a content attribute of a meta element to an HTTP response header.
11701+ *
11702+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMetaElement/httpEquiv)
11703+ */
1169411704 httpEquiv: string;
11705+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMetaElement/media) */
1169511706 media: string;
11696- /** Sets or retrieves the value specified in the content attribute of the meta object. */
11707+ /**
11708+ * Sets or retrieves the value specified in the content attribute of the meta object.
11709+ *
11710+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMetaElement/name)
11711+ */
1169711712 name: string;
1169811713 /**
1169911714 * Sets or retrieves a scheme to be used in interpreting the value of a property specified for the object.
1170011715 * @deprecated
11716+ *
11717+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMetaElement/scheme)
1170111718 */
1170211719 scheme: string;
1170311720 addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLMetaElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
0 commit comments