1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 10:38:11 +00:00

LibWeb: Implement [SameObject] behavior for HTMLFormElement.elements

This commit is contained in:
Andreas Kling 2022-11-24 19:04:05 +01:00
parent 7d8ff0c581
commit d7c58aa58d
3 changed files with 11 additions and 7 deletions

View file

@ -12,8 +12,8 @@ interface HTMLFormElement : HTMLElement {
undefined submit();
// FIXME: Should be [SameObject] and a HTMLFormControlsCollection
readonly attribute HTMLCollection elements;
// FIXME: Should be a HTMLFormControlsCollection
[SameObject] readonly attribute HTMLCollection elements;
readonly attribute unsigned long length;