tor-browser

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

border-style-009.xht (936B)


      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: Border-style shorthand property set using a single value</title>
      5         <link rel="help" href="http://www.w3.org/TR/CSS21/box.html#border-style-properties" />
      6         <meta name="assert" content="The 'border-style' property set using a single value correctly renders the specified value for all sides of the element." />
      7         <style type="text/css">
      8             div
      9             {
     10                 width: 153px;
     11                 height: 153px;
     12                 margin: 10px;
     13                 border-style: groove;
     14                 border-width: 20px;
     15                 border-color: black;
     16             }
     17         </style>
     18     </head>
     19     <body>
     20         <p>Test passes if there is a box with groove borders.</p>
     21         <div></div>
     22     </body>
     23 </html>