tor-browser

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

outline-style-014.html (929B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Basic User Interface Test: outline-style - double (basic)</title>
      4 <link rel="author" title="Intel" href="http://www.intel.com/">
      5 <link rel="author" title="Shiyou Tan" href="mailto:shiyoux.tan@intel.com">
      6 <link rel="help" title="7.3. 'outline-style' property" href="http://www.w3.org/TR/css3-ui/#outline-style">
      7 <link rel="help" href="http://www.w3.org/TR/CSS21/box.html#value-def-border-style">
      8 <link rel="match" href="reference/outline-style-014-ref.html">
      9 <meta name="assert" content="Test checks that the outline style is two solid lines when outline-style set double">
     10 <style>
     11  #test {
     12    height: 150px;
     13    margin: 30px;
     14    outline-color: green;
     15    outline-style: double;
     16    outline-width: 4px;
     17    width: 150px;
     18  }
     19 </style>
     20 <body>
     21  <p>Test passes if there is a blank square whose border is <strong>two green solid lines</strong>.</p>
     22  <div id="test"></div>
     23 </body>