LibWeb: Implement the HTMLLinkElement.relList attribute

This returns a DOMTokenList that reflects the `rel` attribute.
This commit is contained in:
Tim Ledbetter 2024-05-16 06:02:56 +01:00 committed by Andreas Kling
commit 51fc30a191
Notes: sideshowbarker 2024-07-16 23:59:28 +09:00
5 changed files with 25 additions and 2 deletions

View file

@ -16,3 +16,9 @@ form.relList for after setting rel to "whatever": whatever
form.relList for after setting rel to "prefetch": prefetch
form.relList contains "prefetch": true
form.relList contains "whatever": false
link.relList initial length: 0
link.relList always returns the same value: true
link.relList for after setting rel to "whatever": whatever
link.relList for after setting rel to "prefetch": prefetch
link.relList contains "prefetch": true
link.relList contains "whatever": false