tor-browser

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

outline-020.html (640B)


      1 <!doctype html>
      2 <html lang=en>
      3  <meta charset=utf-8>
      4  <title>CSS-UI test: outline block with outline inline</title>
      5  <link rel="author" title="Aleks Totic <atotic@chromium.org>" href="atotic@">
      6  <meta name=assert content="">
      7  <link rel=help href="https://drafts.csswg.org/css-ui-3/#outline-props">
      8  <link rel="match" href="./reference/outline-020-ref.html">
      9 <style>
     10 #container {
     11  outline: green solid 5px;
     12  width: 100px;
     13  height: 30px;
     14  padding: 5px;
     15 }
     16 #target {
     17  outline: blue solid 5px;
     18 }
     19 </style>
     20 
     21  <p>Test passes if blue outline touches top left of green outline.</p>
     22  <div id="container"><span id="target">x</span></div>