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

Side by Side 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 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
mstensho (USE GERRIT) 2014/11/27 09:33:28 HTML, HEAD and BODY tags can be omitted.
3 <head>
4 <style type="text/css">.box {
mstensho (USE GERRIT) 2014/11/27 09:33:28 No need for the type attribute. And please move th
5 display: inline-block;
6 box-sizing: border-box;
mstensho (USE GERRIT) 2014/11/27 09:33:29 Setting display and box-sizing seems unnecessary?
7 -moz-box-sizing: border-box;
mstensho (USE GERRIT) 2014/11/27 09:33:28 No need for this.
8 width: 153px;
9 height: 153px;
10 margin: 10px;
11 border-width: 20px;
12 border-color: black;
13 border-style: solid;
mstensho (USE GERRIT) 2014/11/27 09:33:28 This declaration has no effect.
14 border-style: groove;
15 }
16 </style>
17 </head>
18 <body>
19 <!-- Test mixed border styles. -->
20 <div class="box"></div>
21 </body>
22 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698