gtk2/testsuite/css/parser/calc.ref.css
Benjamin Otte 4a9fa1e750 css: Add API to handle order when printing calc()
Also, add some tests and update old ones to print calc() statements
correctly.
2016-02-13 04:49:08 +01:00

20 lines
205 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;
}