gtk/testsuite/css/parser/shadow-ordering.css
Benjamin Otte a31e5f7a8c cssshadow: Use gtk_css_parser_consume_any()
This way, the arguments can now really be speicified in any order.

A new testcase testing all the ordering possibilities has been added.
2019-04-12 19:34:28 +02:00

44 lines
365 B
CSS

a {
box-shadow: 0 0;
}
b {
box-shadow: 0 0 inset;
}
c {
box-shadow: 0 0 inset red;
}
d {
box-shadow: 0 0 red;
}
e {
box-shadow: 0 0 red inset;
}
f {
box-shadow: inset 0 0;
}
g {
box-shadow: inset red 0 0;
}
h {
box-shadow: inset 0 0 red;
}
i {
box-shadow: red 0 0;
}
j {
box-shadow: red inset 0 0;
}
k {
box-shadow: red 0 0 inset;
}