LibWeb: Add a whole bunch of HTML DOM bindings

Note that these aren't full implementations of the bindings. This
mostly implements the low hanging fruit (namely, basic reflections)

There are some attributes that should be USVString instead of
DOMString. However, USVString is a slightly different definition
of DOMString, so it should suffice for now.
This commit is contained in:
Luke 2020-07-27 05:04:26 +01:00 committed by Andreas Kling
parent db1b67e88a
commit a2b40de0cc
Notes: sideshowbarker 2024-07-19 04:33:26 +09:00
44 changed files with 327 additions and 29 deletions

View file

@ -32,6 +32,8 @@ namespace Web {
class HTMLTableRowElement : public HTMLElement {
public:
using WrapperType = Bindings::HTMLTableRowElementWrapper;
HTMLTableRowElement(DOM::Document&, const FlyString& local_name);
virtual ~HTMLTableRowElement() override;
};