tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

border-top-left-radius-012.xht (2086B)


      1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
      2 <html xmlns="http://www.w3.org/1999/xhtml">
      3     <head>
      4         <title>CSS Test: Borders. Border-top-left-radius using two length values: 0.5in 10mm</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="assert" content="To verify border-top-left-radius property set to two length values (with different units), works fine"/>
     11         <style type="text/css">
     12         /* <![CDATA[ */
     13         	div
     14           {
     15         		border:2px solid #a1a1a1;
     16         		background:#dddddd;
     17         		width:200px;
     18         		height: 100px;
     19         		border-top-left-radius:  0.5in 10mm;
     20         	}
     21          /* ]]> */
     22         </style>
     23 <!--
     24         <script type="text/javascript" src="js/css3_test_helper.js"></script>
     25 -->
     26     </head>
     27     <body>
     28         <p id="testdetails">
     29         </p>
     30         <p>
     31             There should be a box with a rounded top left corner.</p>
     32         <ul>
     33             <li>PASS if only top left corner is rounded.</li>
     34             <li>FAIL if the output is not as expected.</li>
     35         </ul>
     36 
     37     	<div id="test"></div>
     38 <!--
     39     	<script type="text/javascript">
     40          /* <![CDATA[ */
     41         	var expectedBorderRadius = "48px 37px";
     42 
     43         	var testResult = check_CSS_property("border-top-left-radius", expectedBorderRadius);
     44 
     45         	/* if (testResult.pass)
     46         	  // This portion of the code has been removed to ensure that the test case is not automated
     47         	else {
     48         		// This portion of the code has been removed to ensure that the test case is not automated
     49           } */
     50 
     51           if (top.FrameEnabled)	top.fnLog(testResult);
     52          /* ]]> */
     53         </script>
     54 -->
     55     </body>
     56 </html>
     57