Add a css parser test for border-spacing
This commit is contained in:
15
testsuite/css/parser/border-spacing.css
Normal file
15
testsuite/css/parser/border-spacing.css
Normal file
@@ -0,0 +1,15 @@
|
||||
a {
|
||||
border-spacing: 0;
|
||||
}
|
||||
|
||||
b {
|
||||
border-spacing: 10px;
|
||||
}
|
||||
|
||||
c {
|
||||
border-spacing: 10em;
|
||||
}
|
||||
|
||||
d {
|
||||
border-spacing: 1px 2em;
|
||||
}
|
||||
15
testsuite/css/parser/border-spacing.ref.css
Normal file
15
testsuite/css/parser/border-spacing.ref.css
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user