Chromium Code Reviews| Index: LayoutTests/fast/borders/mixed-border-style2.html |
| diff --git a/LayoutTests/fast/borders/mixed-border-style2.html b/LayoutTests/fast/borders/mixed-border-style2.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..17b849d01f8509081473fcb75f619f8131915162 |
| --- /dev/null |
| +++ b/LayoutTests/fast/borders/mixed-border-style2.html |
| @@ -0,0 +1,19 @@ |
| +<!DOCTYPE html> |
| +<html> |
|
mstensho (USE GERRIT)
2014/12/01 20:59:28
No need for HTML, HEAD and BODY.
|
| + <head> |
| + <style> |
| + .box { |
| + width: 153px; |
| + height: 153px; |
| + margin: 10px; |
| + border-width: 20px; |
| + border-color: black; |
| + border-style: groove; |
| + } |
| + </style> |
| + </head> |
| +<body> |
| + <!-- Test mixed border styles. --> |
|
mstensho (USE GERRIT)
2014/12/01 20:59:28
Could you add some test expectation text here? I.e
|
| + <div class="box"></div> |
| +</body> |
| +</html> |