diff options
author | Igor Pissolati <igo08an@hotmail.com> | 2022-04-03 22:07:03 -0300 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-04-04 13:53:26 +0100 |
commit | 8da99c3014aca86c8552f3475cb3bbc3221df994 (patch) | |
tree | 5789fe6d31f8292ab0e950172479b10ee4e545d5 /Userland/Libraries/LibWeb/HTML/HTMLOptionElement.h | |
parent | 6c78e196161bf7a967082897e39b66589394bc77 (diff) | |
download | serenity-8da99c3014aca86c8552f3475cb3bbc3221df994.zip |
LibWeb: Add legacy Option factory function
Diffstat (limited to 'Userland/Libraries/LibWeb/HTML/HTMLOptionElement.h')
-rw-r--r-- | Userland/Libraries/LibWeb/HTML/HTMLOptionElement.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/HTML/HTMLOptionElement.h b/Userland/Libraries/LibWeb/HTML/HTMLOptionElement.h index 39a5ca2eb1..d8ce1708f7 100644 --- a/Userland/Libraries/LibWeb/HTML/HTMLOptionElement.h +++ b/Userland/Libraries/LibWeb/HTML/HTMLOptionElement.h @@ -22,6 +22,7 @@ public: void set_selected(bool); private: + friend class Bindings::OptionConstructor; friend class HTMLSelectElement; void parse_attribute(FlyString const& name, String const& value) override; |