gtk2/testsuite/css/parser/background-repeat.css
Matthias Clasen d081b309d5 Add some css parser tests
These tests exercise many allowed ways to specify various
properties.
2015-12-21 06:28:25 -05:00

104 lines
1.1 KiB
CSS

a {
background-repeat: repeat-x;
}
b {
background-repeat: repeat-y;
}
c {
background-repeat: repeat;
}
d {
background-repeat: space;
}
e {
background-repeat: round;
}
f {
background-repeat: no-repeat;
}
g {
background-repeat: repeat repeat;
}
h {
background-repeat: repeat space;
}
i {
background-repeat: repeat round;
}
j {
background-repeat: repeat no-repeat;
}
k {
background-repeat: space repeat;
}
l {
background-repeat: space space;
}
m {
background-repeat: space round;
}
n {
background-repeat: space no-repeat;
}
g {
background-repeat: round repeat;
}
h {
background-repeat: round space;
}
o {
background-repeat: round round;
}
p {
background-repeat: round no-repeat;
}
q {
background-repeat: no-repeat repeat;
}
r {
background-repeat: no-repeat space;
}
s {
background-repeat: no-repeat round;
}
t {
background-repeat: no-repeat no-repeat;
}
aa {
background-repeat: initial;
}
bb {
background-repeat: inherit;
}
cc {
background-repeat: unset;
}
dd {
background-repeat: repeat-x, space round, no-repeat;
}