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
commit 3dc86747f0
Notes: sideshowbarker 2024-07-17 03:03:37 +09:00
5 changed files with 61 additions and 1 deletions

View file

@ -6,7 +6,7 @@
interface HTMLOutputElement : HTMLElement {
[HTMLConstructor] constructor();
// FIXME: [SameObject, PutForwards=value] readonly attribute DOMTokenList htmlFor;
[SameObject, PutForwards=value] readonly attribute DOMTokenList htmlFor;
readonly attribute HTMLFormElement? form;
[CEReactions, Reflect] attribute DOMString name;