Chromium Code Reviews| Index: LayoutTests/fast/borders/border-image-width-rounding.html |
| diff --git a/LayoutTests/fast/borders/border-image-width-rounding.html b/LayoutTests/fast/borders/border-image-width-rounding.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..39ff980aae7786bbfee5ac31d9e4211c182f208b |
| --- /dev/null |
| +++ b/LayoutTests/fast/borders/border-image-width-rounding.html |
| @@ -0,0 +1,21 @@ |
| +<!doctype html> |
| +<html> |
| + <head> |
| + <title>Test that border-image-width is truncated in the same way |
| + as border-width</title> |
|
Julien - ping for review
2013/11/25 07:29:09
My usual comment about <title>, if it's important
|
| + <style> |
| + .test { |
| + border-style: solid; |
| + border-width: 1px; |
| + border-image-width: 1.9; |
| + border-image-source: linear-gradient(to bottom, green, green); |
| + border-image-slice: 10; |
| + width: 100px; |
| + height: 100px; |
| + } |
| + </style> |
| + </head> |
|
Julien - ping for review
2013/11/25 07:29:09
Let's include a description (the <title> content w
|
| + <body> |
| + <div class="test"></div> |
| + </body> |
| +</html> |