Added support for property merge via +_;

This commit is contained in:
seven-phases-max
2014-02-04 06:54:05 +04:00
parent 808403dde1
commit 9f4818d8fd
4 changed files with 54 additions and 8 deletions

View File

@@ -24,3 +24,10 @@
transform: t1, t2, t3;
background: b1, b2, b3;
}
.test-spaced {
transform: t1 t2 t3;
background: b1 b2, b3;
}
.test-interleaved-with-spaced {
transform: t1a t1b, b1 t2a t2b t2c, b2, b3 t3a t3b;
}