Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / borders / webkit-border-radius.html
blobf75c01944e67cfbe15235bacf1ff91cff4dee45e
1 <html>
2 <head>
3 <style type="text/css">
4 div {
5 width: 50px;
6 height: 50px;
7 border: 50px solid black;
8 margin: 10px;
10 </style>
11 </head>
12 <body>
13 <!-- Check behavior of prefixed border-radius with two values. -->
14 <div style="-webkit-border-radius: 30px 75px;"></div>
15 <div style="border-radius: 30px / 75px;"></div>
16 </body>
17 </html>