Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions baselines/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*/
Expand Down Expand Up @@ -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.
*/
Expand Down Expand Up @@ -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.
*/
Expand Down
36 changes: 36 additions & 0 deletions inputfiles/overridingTypes.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down