normalizeDisplayValues
Normalizes the two value syntax for `display` into the single value syntax where possible.
Example
Input
.box {
display: block flow;
}Output
.box {
display: block;
}Normalizes the two value syntax for `display` into the single value syntax where possible.
.box {
display: block flow;
}.box {
display: block;
}