LibWeb: Handle immutable state for HTMLInputElement pickers

Which should not be shown if the element is not mutable.
This commit is contained in:
Shannon Booth 2023-09-03 00:17:37 +12:00 committed by Andreas Kling
commit 5b8be3a08d
Notes: sideshowbarker 2024-07-17 07:48:42 +09:00
2 changed files with 8 additions and 2 deletions

View file

@ -81,6 +81,8 @@ public:
bool indeterminate() const { return m_indeterminate; }
void set_indeterminate(bool);
bool is_mutable() const { return m_is_mutable; }
void did_edit_text_node(Badge<BrowsingContext>);
JS::GCPtr<FileAPI::FileList> files();