1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2 <html>
3 <head>
4 <title>CSS Test: Borders. Border-top-right-radius using two length values: 40pt 2pc</title>
5 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
6 <meta http-equiv="Content-Style-Type" content="text/css">
7 <meta http-equiv="Content-Script-Type" content="text/javascript">
8 <link rel="author" title="Nokia" href="http://www.nokia.com/">
9 <link rel="help" href="http://www.w3.org/TR/css3-background/#the-border-radius">
10 <meta name="flags" content="">
11 <meta name="assert" content="To verify border-top-right-radius property sets to two length values (with different units), works fine">
12 <style type="text/css">
13 /* */
14 div
15 {
16 border:2px solid #a1a1a1;
17 background:#dddddd;
18 width:200px;
19 height: 100px;
20 border-top-right-radius: 40pt 2pc;
21 }
22 /* */
23 </style>
24 <!--
25 <script type="text/javascript" src="js/css3_test_helper.js"></script>
26 -->
27 </head>
28 <body>
29 <p id="testdetails">
30 </p>
31 <p>
32 There should be a box with a rounded top right corner.</p>
33 <ul>
34 <li>PASS if only top right corner is rounded.</li>
35 <li>FAIL if the output is not as expected.</li>
36 </ul>
37
38 <div id="test"></div>
39 <!--
40 <script type="text/javascript">
41 /* <![CDATA[ */
42 var expectedBorderRadius = "53px 32px";
43
44 var testResult = check_CSS_property("border-top-right-radius", expectedBorderRadius);
45
46 /* if (testResult.pass)
47 // This portion of the code has been removed to ensure that the test case is not automated
48 else {
49 // This portion of the code has been removed to ensure that the test case is not automated
50 } */
51
52 if (top.FrameEnabled) top.fnLog(testResult);
53 /* ]]> */
54 </script>
55 -->
56 </body>
57 </html>