tor-browser

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

border-image-slice-005-ref.html (633B)


      1 <!DOCTYPE html>
      2 
      3  <meta charset="UTF-8">
      4 
      5  <title>CSS Reference Test</title>
      6 
      7  <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/">
      8 
      9  <style>
     10  div#outer
     11    {
     12      background-color: orange;
     13      border: blue double 24px;
     14      margin: 50px;
     15      padding: 8px;
     16      width: 216px;
     17    }
     18 
     19  div#inner
     20    {
     21      border: blue solid 8px;
     22      height: 100px;
     23    }
     24  </style>
     25 
     26  <p>Test passes if there is a filled orange rectangle inside 3 blue borders interleaved with 2 orange borders and <strong>no red</strong>.
     27 
     28  <div id="outer">
     29    <div id="inner"></div>
     30  </div>