LibWeb/CSS: Remove PropertyID::Invalid

This commit is contained in:
Sam Atkins 2025-09-30 12:40:59 +01:00 committed by Jelle Raaijmakers
parent 56c7d838f0
commit a098b5fcc4
Notes: github-actions[bot] 2025-09-30 13:22:16 +00:00
3 changed files with 0 additions and 4 deletions

View file

@ -22,7 +22,6 @@ TEST_CASE(is_inherited_property_test)
EXPECT(!CSS::is_inherited_property(CSS::PropertyID::Border));
// Edge cases
EXPECT(!CSS::is_inherited_property(CSS::PropertyID::Invalid));
EXPECT(!CSS::is_inherited_property(CSS::PropertyID::All));
}