1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 18:27:39 +00:00

LibWeb: Remove StyleProperties::set_property(PropertyID, StringView)

This API has no more clients (and the last client that I just removed
wasn't even using it right) so let's get rid of it.
This commit is contained in:
Andreas Kling 2021-10-28 01:52:53 +02:00
parent 5c132724ea
commit 84b15cc7b1
2 changed files with 0 additions and 6 deletions

View file

@ -37,7 +37,6 @@ public:
HashMap<CSS::PropertyID, NonnullRefPtr<StyleValue>> const& properties() const { return m_property_values; }
void set_property(CSS::PropertyID, NonnullRefPtr<StyleValue> value);
void set_property(CSS::PropertyID, const StringView&);
Optional<NonnullRefPtr<StyleValue>> property(CSS::PropertyID) const;
Length length_or_fallback(CSS::PropertyID, const Length& fallback) const;