summaryrefslogtreecommitdiff
path: root/scss/tests/files/general/null-values.scss
blob: d657ab225422c076248dc579265ca18ca5dd4a5d (plain)
1
2
3
4
5
6
7
8
9
10
11
div {
    // nulls should be omitted from evaluated lists
    a: (1, null, 2, null, 3);
    // but not from literal untouched lists
    b: 1, null, 2, null, 3;

    // entirely null lists become nothing
    c: 1 (null, null) 2;
    // empty properties aren't printed
    d: (null, null);
}