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

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: Remove unset border color in RenderStyle Created 6 years 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..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>

Powered by Google App Engine
This is Rietveld 408576698