LibWeb: Implement the HTMLOutputElement.htmlFor attribute

This returns a DOMTokenList that reflects the `for` attribute.
This commit is contained in:
Tim Ledbetter
2024-05-16 18:54:42 +01:00
committed by Andreas Kling
parent acc1fa3c62
commit 3dc86747f0
Notes: sideshowbarker 2024-07-17 03:03:37 +09:00
5 changed files with 61 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
output.htmlFor is initially empty: true
output.htmlFor always returns the same object: true
output.htmlFor after setting output.htmlFor to "a": a
for attribute value after setting output.htmlFor to "a": a
output.htmlFor after calling output.setAttribute("for", "b"): b
output.htmlFor after setting output.htmlFor to "c d": c d
for attribute value after setting output.htmlFor to "c d": c d
output.htmlFor.contains("c"): true
output.htmlFor.contains("a"): false