Index: LayoutTests/fast/borders/border-image-fill-no-border-width.html |
diff --git a/LayoutTests/fast/borders/border-image-fill-no-border-width.html b/LayoutTests/fast/borders/border-image-fill-no-border-width.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..b7522e9cd675a4e1ba26663a543b22d7cb81e906 |
--- /dev/null |
+++ b/LayoutTests/fast/borders/border-image-fill-no-border-width.html |
@@ -0,0 +1,19 @@ |
+<!DOCTYPE HTML> |
pdr.
2015/06/02 03:07:56
I like this test but can you add the other tests f
|
+<head> |
+ <title>Test that border-image is drawn even though border width is zero</title> |
+ <style> |
+ body { margin: 0; } |
+ div { |
+ border-width: 0px; |
+ border-style: solid; |
+ height: 76px; |
+ width: 76px; |
+ background-color: red; |
+ border-image-source: url('resources/border-image.png'); |
+ border-image-slice: 0 fill; |
+ } |
+ </style> |
+</head> |
+<body> |
+ <div></div> |
+</body> |