Property merge via +_: minor test updates.

This commit is contained in:
seven-phases-max
2014-02-05 00:54:20 +04:00
parent 9f4818d8fd
commit c523e99622
2 changed files with 12 additions and 9 deletions

View File

@@ -29,5 +29,6 @@
background: b1 b2, b3;
}
.test-interleaved-with-spaced {
transform: t1a t1b, b1 t2a t2b t2c, b2, b3 t3a t3b;
transform: t1s, t2 t3s, t4 t5s t6s;
background: b1 b2s, b3, b4;
}

View File

@@ -57,6 +57,7 @@
background+: b2, b3;
transform+: t3;
}
.test-spaced {
transform+_: t1;
background+_: b1;
@@ -64,13 +65,14 @@
background+_: b2, b3;
transform+_: t3;
}
.test-interleaved-with-spaced {
transform+_: t1a;
transform+_: t1b;
transform+: b1;
transform+_: t2a;
transform+_: t2b t2c;
transform+: b2, b3;
transform+_: t3a;
transform+_: t3b;
transform+_: t1s;
transform+: t2;
background+: b1;
transform+_: t3s;
transform+: t4 t5s;
background+_: b2s, b3;
transform+_: t6s;
background+: b4;
}