gtk2/testsuite/css/parser/calc.css
Benjamin Otte 63d1f80742 css: Add support for '*' and '/' to calc()
More tests are included.
2016-02-13 04:49:08 +01:00

24 lines
297 B
CSS

a {
margin-left: calc(3px + 1em);
}
b {
transition-duration: calc(1s - 100ms + -100ms);
}
c {
margin-left: calc(-2px + 1em + 4px);
}
d {
background-size: calc( 100% - 10px );
}
e {
border-left-width: calc(1px + 1px);
}
f {
background-size: calc(2 * 3px + 4px * 5 - 6px / 3);
}