@@ -10740,6 +10740,7 @@ interface HTMLIFrameElement extends HTMLElement {
10740
10740
*/
10741
10741
align: string;
10742
10742
allow: string;
10743
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/allowFullscreen) */
10743
10744
allowFullscreen: boolean;
10744
10745
/**
10745
10746
* Retrieves the document object of the page or frame.
@@ -10766,6 +10767,7 @@ interface HTMLIFrameElement extends HTMLElement {
10766
10767
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/height)
10767
10768
*/
10768
10769
height: string;
10770
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/loading) */
10769
10771
loading: string;
10770
10772
/**
10771
10773
* Sets or retrieves a URI to a long description of the object.
@@ -11688,16 +11690,31 @@ declare var HTMLMenuElement: {
11688
11690
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMetaElement)
11689
11691
*/
11690
11692
interface 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
+ */
11692
11698
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
+ */
11694
11704
httpEquiv: string;
11705
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMetaElement/media) */
11695
11706
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
+ */
11697
11712
name: string;
11698
11713
/**
11699
11714
* Sets or retrieves a scheme to be used in interpreting the value of a property specified for the object.
11700
11715
* @deprecated
11716
+ *
11717
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMetaElement/scheme)
11701
11718
*/
11702
11719
scheme: string;
11703
11720
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLMetaElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
0 commit comments