1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-21 15:35:07 +00:00

LibWeb: Fix typo in CSS::Display::is_outside_and_inside() name

This commit is contained in:
Andreas Kling 2022-04-13 01:03:40 +02:00
parent be4913c1fb
commit de5de4d99a
3 changed files with 14 additions and 14 deletions

View file

@ -46,7 +46,7 @@ static RefPtr<StyleValue> style_value_for_display(CSS::Display display)
if (display.is_none())
return IdentifierStyleValue::create(CSS::ValueID::None);
if (display.it_outside_and_inside()) {
if (display.is_outside_and_inside()) {
NonnullRefPtrVector<StyleValue> values;
switch (display.outside()) {
case CSS::Display::Outside::Inline: