Skip to content

Commit 818f745

Browse files
authored
Merge pull request #425 from a-tarasyuk/feature/423-add-rellist
Add relList to HTMLAnchorElement, HTMLAreaElement, HTMLLinkElement
2 parents 7749aee + 70b113c commit 818f745

File tree

2 files changed

+39
-0
lines changed

2 files changed

+39
-0
lines changed

baselines/dom.generated.d.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5177,6 +5177,7 @@ interface HTMLAnchorElement extends HTMLElement, HTMLHyperlinkElementUtils {
51775177
* Sets or retrieves the relationship between the object and the destination of the link.
51785178
*/
51795179
rel: string;
5180+
readonly relList: DOMTokenList;
51805181
/**
51815182
* Sets or retrieves the relationship between the object and the destination of the link.
51825183
*/
@@ -5274,6 +5275,7 @@ interface HTMLAreaElement extends HTMLElement, HTMLHyperlinkElementUtils {
52745275
/** @deprecated */
52755276
noHref: boolean;
52765277
rel: string;
5278+
readonly relList: DOMTokenList;
52775279
/**
52785280
* Sets or retrieves the shape of the object.
52795281
*/
@@ -6724,6 +6726,7 @@ interface HTMLLinkElement extends HTMLElement, LinkStyle {
67246726
* Sets or retrieves the relationship between the object and the destination of the link.
67256727
*/
67266728
rel: string;
6729+
readonly relList: DOMTokenList;
67276730
/**
67286731
* Sets or retrieves the relationship between the object and the destination of the link.
67296732
*/

inputfiles/overridingTypes.json

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,42 @@
147147
},
148148
"interfaces": {
149149
"interface": {
150+
"HTMLAnchorElement": {
151+
"name": "HTMLAnchorElement",
152+
"properties": {
153+
"property": {
154+
"relList": {
155+
"read-only": 1,
156+
"name": "relList",
157+
"type": "DOMTokenList"
158+
}
159+
}
160+
}
161+
},
162+
"HTMLAreaElement": {
163+
"name": "HTMLAreaElement",
164+
"properties": {
165+
"property": {
166+
"relList": {
167+
"read-only": 1,
168+
"name": "relList",
169+
"type": "DOMTokenList"
170+
}
171+
}
172+
}
173+
},
174+
"HTMLLinkElement": {
175+
"name": "HTMLLinkElement",
176+
"properties": {
177+
"property": {
178+
"relList": {
179+
"read-only": 1,
180+
"name": "relList",
181+
"type": "DOMTokenList"
182+
}
183+
}
184+
}
185+
},
150186
"SourceBuffer": {
151187
"specs": "media-source",
152188
"name": "SourceBuffer",

0 commit comments

Comments
 (0)