Add some css parser tests

These tests exercise many allowed ways to specify various
properties.
This commit is contained in:
Matthias Clasen
2015-12-20 17:33:24 -05:00
parent a54fadced6
commit d081b309d5
63 changed files with 2394 additions and 223 deletions

View File

@ -0,0 +1,23 @@
a {
text-decoration-style: initial;
}
b {
text-decoration-style: inherit;
}
c {
text-decoration-style: unset;
}
d {
text-decoration-style: solid;
}
e {
text-decoration-style: double;
}
f {
text-decoration-style: wavy;
}