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;
}