Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(52)

Unified Diff: LayoutTests/fast/borders/mixed-border-style2.html

Issue 759373002: Better handling border color style decoration (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Groove/inset/outset borders show solid if the color is black Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698