LibWeb: Implement the HTMLAreaElement.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 0a3e1846f0
Notes: sideshowbarker 2024-07-17 02:29:45 +09:00
5 changed files with 24 additions and 1 deletions

View file

@ -17,6 +17,7 @@
test(() => {
const tagNamesToTest = [
"a",
"area",
];
for (const tagName of tagNamesToTest) {