mirror of
https://github.com/servo/servo
synced 2026-04-28 18:37:39 +02:00
37 lines
1.0 KiB
HTML
37 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html><head>
|
|
<title>CSS Test: Borders Radius Shorthand. </title>
|
|
<link href="mailto:arno@arno.org" rel="author" title="Arno">
|
|
<link href="http://www.w3.org/TR/css3-background/#the-border-radius" rel="help">
|
|
<link href="reference/border-radius-shorthand-002-ref.htm" rel="match">
|
|
<meta content="" name="flags">
|
|
<meta content="The shorthand border radius property can be used to specify all four eliptical corners of a box." name="assert">
|
|
<style type="text/css">
|
|
/* <![CDATA[ */
|
|
div
|
|
{
|
|
border-radius: 29px 43px 19px 13px / 5px 11px 23px 17px;
|
|
|
|
background: #dddddd;
|
|
width: 200px;
|
|
height: 100px;
|
|
}
|
|
/* ]]> */
|
|
</style>
|
|
|
|
</head>
|
|
<body>
|
|
<p>
|
|
There should be one box, with four rounded corners, each corner a different radius.
|
|
</p>
|
|
<ul>
|
|
<li>PASS if the box below has four rounded corners.</li>
|
|
<li>FAIL if the corners are not rounded.</li>
|
|
</ul>
|
|
|
|
<div></div>
|
|
|
|
|
|
|
|
|
|
</body></html> |