diff --git a/baselines/dom.generated.d.ts b/baselines/dom.generated.d.ts index 1e47b47eb..080afbbd2 100644 --- a/baselines/dom.generated.d.ts +++ b/baselines/dom.generated.d.ts @@ -5176,6 +5176,7 @@ interface HTMLAnchorElement extends HTMLElement, HTMLHyperlinkElementUtils { * Sets or retrieves the relationship between the object and the destination of the link. */ rel: string; + readonly relList: DOMTokenList; /** * Sets or retrieves the relationship between the object and the destination of the link. */ @@ -5273,6 +5274,7 @@ interface HTMLAreaElement extends HTMLElement, HTMLHyperlinkElementUtils { /** @deprecated */ noHref: boolean; rel: string; + readonly relList: DOMTokenList; /** * Sets or retrieves the shape of the object. */ @@ -6723,6 +6725,7 @@ interface HTMLLinkElement extends HTMLElement, LinkStyle { * Sets or retrieves the relationship between the object and the destination of the link. */ rel: string; + readonly relList: DOMTokenList; /** * Sets or retrieves the relationship between the object and the destination of the link. */ diff --git a/inputfiles/overridingTypes.json b/inputfiles/overridingTypes.json index 0cb4ac25c..8f1013bcb 100644 --- a/inputfiles/overridingTypes.json +++ b/inputfiles/overridingTypes.json @@ -147,6 +147,42 @@ }, "interfaces": { "interface": { + "HTMLAnchorElement": { + "name": "HTMLAnchorElement", + "properties": { + "property": { + "relList": { + "read-only": 1, + "name": "relList", + "type": "DOMTokenList" + } + } + } + }, + "HTMLAreaElement": { + "name": "HTMLAreaElement", + "properties": { + "property": { + "relList": { + "read-only": 1, + "name": "relList", + "type": "DOMTokenList" + } + } + } + }, + "HTMLLinkElement": { + "name": "HTMLLinkElement", + "properties": { + "property": { + "relList": { + "read-only": 1, + "name": "relList", + "type": "DOMTokenList" + } + } + } + }, "SourceBuffer": { "specs": "media-source", "name": "SourceBuffer",