LibWeb: Harmonize look of range input element

Previously the entire slider track was colored.
Now only the lower part of the slider track (left side of the thumb) is
colored.
Chrome and Firefox do the same.
This commit is contained in:
simonkrauter 2024-07-08 17:19:45 -03:00 committed by Andrew Kaster
commit 7766909415
Notes: sideshowbarker 2024-07-17 06:29:49 +09:00
3 changed files with 25 additions and 6 deletions

View file

@ -321,6 +321,8 @@ private:
String m_last_src_value;
bool m_has_uncommitted_changes { false };
JS::GCPtr<DOM::Element> m_range_progress_element;
};
}