summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/CSS/Selector.cpp
diff options
context:
space:
mode:
authorLuke Wilde <lukew@serenityos.org>2022-11-05 15:17:33 +0000
committerAndreas Kling <kling@serenityos.org>2022-11-07 14:10:41 +0100
commit1fbad9caaf07401e3206cd8c355721952bdbfbce (patch)
tree00e7641e9f8d82764d4c5f99a0e7503d7f42e347 /Userland/Libraries/LibWeb/CSS/Selector.cpp
parentdfad2d4c13d62d5221f8792ec7ca14a2378a0b17 (diff)
downloadserenity-1fbad9caaf07401e3206cd8c355721952bdbfbce.zip
LibWeb: Recognise the ::placeholder pseudo element
This doesn't give it any functionality.
Diffstat (limited to 'Userland/Libraries/LibWeb/CSS/Selector.cpp')
-rw-r--r--Userland/Libraries/LibWeb/CSS/Selector.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/CSS/Selector.cpp b/Userland/Libraries/LibWeb/CSS/Selector.cpp
index ca10a764ef..02e3656a30 100644
--- a/Userland/Libraries/LibWeb/CSS/Selector.cpp
+++ b/Userland/Libraries/LibWeb/CSS/Selector.cpp
@@ -356,6 +356,8 @@ Optional<Selector::PseudoElement> pseudo_element_from_string(StringView name)
return Selector::PseudoElement::ProgressBar;
} else if (name.equals_ignoring_case("-webkit-progress-value"sv)) {
return Selector::PseudoElement::ProgressValue;
+ } else if (name.equals_ignoring_case("placeholder"sv)) {
+ return Selector::PseudoElement::Placeholder;
}
return {};
}