tor-browser

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

outline-inline-block-vrl-006.html (892B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Writing Modes Test: outline layout and non-replaced inline and vertical-rl writing-mode</title>
      4 <link rel="author" title="Koji Ishii" href="mailto:kojiishi@gmail.com" />
      5 <link rel="reviewer" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" /> <!-- 2016-01-14 -->
      6 <meta content="ahem" name="flags" />
      7 <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
      8 <style>
      9 .container {
     10  color:transparent;
     11  font:50px/1 Ahem;
     12 }
     13 .outline {
     14  color:orange;
     15  display:inline-block;
     16  outline:blue solid 2px;
     17 }
     18 </style>
     19 <p>Test passes if the inside of 3 blue rectangles is orange.
     20 <div class="container">
     21  <span class="outline" style="margin-left:1em">1</span><br>
     22  <span class="outline" style="margin-left:3em">1<br>2</span><br>
     23  <span class="outline" style="margin-left:5em">1<br>2<br>X</span>
     24 </div>