add another test

This commit is contained in:
ndparker 2015-10-11 17:27:22 +02:00
parent 34082df5e9
commit cd226ddc8e
3 changed files with 13 additions and 0 deletions

9
tests/main/calc_04.css Normal file
View File

@ -0,0 +1,9 @@
/*! Found this example by searching github for 'calc(' :-)
* https://github.com/marcelotorres/experiencing-transition-and-the-calc-CSS3/blob/master/style.css
*/
.mtlab1-wrap{margin:60px auto 0 auto;overflow:hidden;background-color:#f0f0f0;border:2px solid #fff;
width: -webkit-calc((74px * 6) + 330px);
width: -moz-calc((74px * 6) + 330px);
width: -o-calc((74px * 6) + 330px);
width: calc((74px * 6) + 330px);
}

View File

@ -0,0 +1 @@
.mtlab1-wrap{margin:60px auto 0 auto;overflow:hidden;background-color:#f0f0f0;border:2px solid #fff;width:-webkit-calc((74px * 6) + 330px);width:-moz-calc((74px * 6) + 330px);width:-o-calc((74px * 6) + 330px);width:calc((74px * 6) + 330px)}

View File

@ -0,0 +1,3 @@
/*! Found this example by searching github for 'calc(' :-)
* https://github.com/marcelotorres/experiencing-transition-and-the-calc-CSS3/blob/master/style.css
*/.mtlab1-wrap{margin:60px auto 0 auto;overflow:hidden;background-color:#f0f0f0;border:2px solid #fff;width:-webkit-calc((74px * 6) + 330px);width:-moz-calc((74px * 6) + 330px);width:-o-calc((74px * 6) + 330px);width:calc((74px * 6) + 330px)}