forked from AuroraMiddleware/gtk
Add a css parser test for border-spacing
This commit is contained in:
parent
b1f2e3b581
commit
c4fd5bc233
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;
|
||||
}
|
Loading…
Reference in New Issue
Block a user