Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions source/mycss/property/parser_background.c
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,13 @@ bool mycss_property_parser_background_position_check(mycss_values_background_pos
return false;
}
}
case MyCSS_PROPERTY_BACKGROUND_POSITION_CENTER:
{
if (position->three.type == MyCSS_PROPERTY_VALUE_UNDEF)
return true;

return false;
}

default:
return false;
Expand Down