Add a css parser test for border-spacing

This commit is contained in:
Matthias Clasen 2016-12-10 20:41:07 -05:00
parent b1f2e3b581
commit c4fd5bc233
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,15 @@
a {
border-spacing: 0;
}
b {
border-spacing: 10px;
}
c {
border-spacing: 10em;
}
d {
border-spacing: 1px 2em;
}

View File

@ -0,0 +1,15 @@
a {
border-spacing: 0 0;
}
b {
border-spacing: 10px 10px;
}
c {
border-spacing: 10em 10em;
}
d {
border-spacing: 1px 2em;
}