mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-14 12:41:07 +00:00
a31e5f7a8c
This way, the arguments can now really be speicified in any order. A new testcase testing all the ordering possibilities has been added.
44 lines
365 B
CSS
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;
|
|
}
|