Update CSS tests to revision 939546644b4d333218fd9c2c0f68c60752ff1e95

This commit is contained in:
Ms2ger
2015-09-25 11:45:40 +02:00
parent b26fac3f78
commit 0ad6e78b23
435 changed files with 7534 additions and 3290 deletions

View File

@@ -0,0 +1,37 @@
<!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>