tor-browser

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

1545360-1-ref.xhtml (671B)


      1 <html xmlns="http://www.w3.org/1999/xhtml"
      2      xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
      3 <style>
      4  .container {
      5      display: flex;
      6      flex-direction: column;
      7      outline: 1px solid black;
      8  }
      9  .item {
     10      border: 0px solid pink;
     11      box-sizing: content-box;
     12  }
     13  .withBorderTop {
     14      border-top-width: 20px;
     15  }
     16 </style>
     17 <body>
     18  <div class="container">
     19    <xul:toolbarpaletteitem
     20      class="item withBorderTop">abc</xul:toolbarpaletteitem>
     21    <xul:toolbarpaletteitem
     22      class="item">def</xul:toolbarpaletteitem>
     23    <xul:toolbarpaletteitem
     24      class="item">ghi</xul:toolbarpaletteitem>
     25  </div>
     26 </body>
     27 </html>