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:
parent
be4913c1fb
commit
de5de4d99a
3 changed files with 14 additions and 14 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue