Index: LayoutTests/fast/borders/border-image-width-numbers.html |
diff --git a/LayoutTests/fast/borders/border-image-width-numbers.html b/LayoutTests/fast/borders/border-image-width-numbers.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..de30579d26f639abeb7442df4cc908d4d79cda66 |
--- /dev/null |
+++ b/LayoutTests/fast/borders/border-image-width-numbers.html |
@@ -0,0 +1,29 @@ |
+<!doctype html> |
+<html> |
+<head> |
+ <title>Test that numbers in border-image-width are rendered correctly</title> |
+ <style> |
+ .ref { |
+ background: red; |
+ width: 140px; |
+ height: 140px; |
+ position: absolute; |
+ z-index: -1; |
+ } |
+ .test { |
+ border-style: solid; |
+ border-width: 20px; |
+ border-image-width: 0 3.5; |
+ border-image-slice: 21 30 30 21; |
+ border-image-source: url(../css/resources/greenbox-100px.png); |
+ width: 100px; |
+ height: 100px; |
+ } |
+ </style> |
+</head> |
+<body> |
+ <div class="ref"></div> |
+ <div class="test"></div> |
+ <p>There should be a green box above.</p> |
+</body> |
+</html> |