summaryrefslogtreecommitdiff
path: root/Libraries/LibWeb/Bindings/Wrapper.h
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-06-21 11:39:32 +0200
committerAndreas Kling <kling@serenityos.org>2020-06-21 11:39:32 +0200
commita64033e581bd82816051456cb1e3b6b21762c543 (patch)
treeb6e4721d2f0e2bf57e2e0754c9d38bf28fa54051 /Libraries/LibWeb/Bindings/Wrapper.h
parent5eb39a5f61a2617e795b26ba95bc73d83d43a195 (diff)
downloadserenity-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.h1
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)