Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / borders / only-one-border-with-width.html
blob2249f25d61513858ef22b0eebf69f3a832d6bc03
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta name="viewport" contents="width=device-width">
5 <style>
7 div {
8 margin: 20px;
9 box-sizing: border-box;
10 display: block;
11 width: 100px;
12 min-height: 50px;
13 border-right: 5px solid rgba(0, 0, 0, 0.15);
14 border-radius: 10px;
15 border-bottom-right-radius: 0px 0px;
16 border-top-right-radius: 0px 0px;
18 </style>
19 </head>
20 <body>
21 <!--This test passes if there is only a right border visible on the div below.-->
22 <div>
23 </div>
24 </body>
25 </html>