diff --git a/testsuite/css/parser/border-spacing.css b/testsuite/css/parser/border-spacing.css new file mode 100644 index 0000000000..f280021191 --- /dev/null +++ b/testsuite/css/parser/border-spacing.css @@ -0,0 +1,15 @@ +a { + border-spacing: 0; +} + +b { + border-spacing: 10px; +} + +c { + border-spacing: 10em; +} + +d { + border-spacing: 1px 2em; +} diff --git a/testsuite/css/parser/border-spacing.ref.css b/testsuite/css/parser/border-spacing.ref.css new file mode 100644 index 0000000000..da4287eaac --- /dev/null +++ b/testsuite/css/parser/border-spacing.ref.css @@ -0,0 +1,15 @@ +a { + border-spacing: 0 0; +} + +b { + border-spacing: 10px 10px; +} + +c { + border-spacing: 10em 10em; +} + +d { + border-spacing: 1px 2em; +}