mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 09:45:06 +02:00
LibWeb: Fix typo in CSS::Display::is_outside_and_inside() name
This commit is contained in:
Notes:
sideshowbarker
2024-07-17 11:50:23 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/de5de4d99a
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user