gtk2/testsuite/css/parser/calc.ref.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
237 B
CSS

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