gtk2/testsuite/css/parser/font-weight.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

64 lines
452 B
CSS

a {
font-weight: initial;
}
b {
font-weight: inherit;
}
c {
font-weight: unset;
}
d {
font-weight: normal;
}
e {
font-weight: bold;
}
f {
font-weight: bolder;
}
g {
font-weight: lighter;
}
h {
font-weight: 100;
}
i {
font-weight: 200;
}
j {
font-weight: 300;
}
k {
font-weight: 400;
}
l {
font-weight: 500;
}
m {
font-weight: 600;
}
n {
font-weight: 700;
}
o {
font-weight: 800;
}
p {
font-weight: 900;
}