diff options
author | Andreas Kling <kling@serenityos.org> | 2020-06-21 11:39:32 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-06-21 11:39:32 +0200 |
commit | a64033e581bd82816051456cb1e3b6b21762c543 (patch) | |
tree | b6e4721d2f0e2bf57e2e0754c9d38bf28fa54051 /Libraries/LibWeb/Bindings/Wrapper.h | |
parent | 5eb39a5f61a2617e795b26ba95bc73d83d43a195 (diff) | |
download | serenity-a64033e581bd82816051456cb1e3b6b21762c543.zip |
LibWeb: Generate Element bindings from IDL :^)
Had to do a bunch more hacking on WrapperGenerator to support this.
We now support attribute setters as well.
Diffstat (limited to 'Libraries/LibWeb/Bindings/Wrapper.h')
-rw-r--r-- | Libraries/LibWeb/Bindings/Wrapper.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Libraries/LibWeb/Bindings/Wrapper.h b/Libraries/LibWeb/Bindings/Wrapper.h index 24c288b01c..09d9a6b5cb 100644 --- a/Libraries/LibWeb/Bindings/Wrapper.h +++ b/Libraries/LibWeb/Bindings/Wrapper.h @@ -40,6 +40,7 @@ class Wrapper public: virtual bool is_node_wrapper() const { return false; } virtual bool is_document_wrapper() const { return false; } + virtual bool is_element_wrapper() const { return false; } protected: explicit Wrapper(Object& prototype) |