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..00c21bcb1eca473e8ca7e7499fc041e24f29389b |
| --- /dev/null |
| +++ b/LayoutTests/fast/borders/mixed-border-style2.html |
| @@ -0,0 +1,22 @@ |
| +<!DOCTYPE html> |
| +<html> |
|
mstensho (USE GERRIT)
2014/11/27 09:33:28
HTML, HEAD and BODY tags can be omitted.
|
| + <head> |
| + <style type="text/css">.box { |
|
mstensho (USE GERRIT)
2014/11/27 09:33:28
No need for the type attribute. And please move th
|
| + display: inline-block; |
| + box-sizing: border-box; |
|
mstensho (USE GERRIT)
2014/11/27 09:33:29
Setting display and box-sizing seems unnecessary?
|
| + -moz-box-sizing: border-box; |
|
mstensho (USE GERRIT)
2014/11/27 09:33:28
No need for this.
|
| + width: 153px; |
| + height: 153px; |
| + margin: 10px; |
| + border-width: 20px; |
| + border-color: black; |
| + border-style: solid; |
|
mstensho (USE GERRIT)
2014/11/27 09:33:28
This declaration has no effect.
|
| + border-style: groove; |
| + } |
| + </style> |
| + </head> |
| +<body> |
| + <!-- Test mixed border styles. --> |
| + <div class="box"></div> |
| +</body> |
| +</html> |