@@ -10115,6 +10115,7 @@ interface HTMLElement extends Element, ElementCSSInlineStyle, ElementContentEdit
10115
10115
spellcheck: boolean;
10116
10116
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/title) */
10117
10117
title: string;
10118
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/translate) */
10118
10119
translate: boolean;
10119
10120
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/attachInternals) */
10120
10121
attachInternals(): ElementInternals;
@@ -11299,7 +11300,11 @@ interface HTMLLinkElement extends HTMLElement, LinkStyle {
11299
11300
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/href)
11300
11301
*/
11301
11302
href: string;
11302
- /** Sets or retrieves the language code of the object. */
11303
+ /**
11304
+ * Sets or retrieves the language code of the object.
11305
+ *
11306
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/hreflang)
11307
+ */
11303
11308
hreflang: string;
11304
11309
imageSizes: string;
11305
11310
imageSrcset: string;
@@ -12091,6 +12096,7 @@ declare var HTMLOptionsCollection: {
12091
12096
};
12092
12097
12093
12098
interface HTMLOrSVGElement {
12099
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/autofocus) */
12094
12100
autofocus: boolean;
12095
12101
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/dataset) */
12096
12102
readonly dataset: DOMStringMap;
@@ -12341,6 +12347,7 @@ interface HTMLScriptElement extends HTMLElement {
12341
12347
* @deprecated
12342
12348
*/
12343
12349
charset: string;
12350
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLScriptElement/crossOrigin) */
12344
12351
crossOrigin: string | null;
12345
12352
/** Sets or retrieves the status of the script. */
12346
12353
defer: boolean;
@@ -13512,8 +13519,11 @@ declare var Headers: {
13512
13519
new(init?: HeadersInit): Headers;
13513
13520
};
13514
13521
13522
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Highlight) */
13515
13523
interface Highlight {
13524
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Highlight/priority) */
13516
13525
priority: number;
13526
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Highlight/type) */
13517
13527
type: HighlightType;
13518
13528
forEach(callbackfn: (value: AbstractRange, key: AbstractRange, parent: Highlight) => void, thisArg?: any): void;
13519
13529
}
@@ -13523,6 +13533,7 @@ declare var Highlight: {
13523
13533
new(...initialRanges: AbstractRange[]): Highlight;
13524
13534
};
13525
13535
13536
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HighlightRegistry) */
13526
13537
interface HighlightRegistry {
13527
13538
forEach(callbackfn: (value: Highlight, key: string, parent: HighlightRegistry) => void, thisArg?: any): void;
13528
13539
}
0 commit comments