LibWeb: Add HTML elements to factories, add missing tags and attributes

This is mostly to get the grunt work of the way. This is split up into
multiple commits to hopefully make it more manageable to review.

Note that these are not full implementations, and the bindings mostly
get the low hanging fruit.

Also implements some attributes that I kept out because they had
dashes in them. Therefore, this closes #2905.
This commit is contained in:
Luke 2020-08-09 17:10:41 +01:00 committed by Andreas Kling
parent be5a62d5d7
commit 5724ac8e72
Notes: sideshowbarker 2024-07-19 04:07:34 +09:00
13 changed files with 656 additions and 54 deletions

View file

@ -2,5 +2,6 @@ interface HTMLFormElement : HTMLElement {
[Reflect] attribute DOMString name;
[Reflect] attribute DOMString rel;
[Reflect=accept-charset] attribute DOMString acceptCharset;
}