tor-browser

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

xul-reflow-1.html (375B)


      1 <!DOCTYPE HTML>
      2 <title>Testcase, bug 764354</title>
      3 <style>
      4 #outer {
      5  display: -moz-box;
      6  overflow: hidden;
      7  -moz-box-orient: vertical;
      8  width: 300px;
      9  height: 100px;
     10  background: yellow; color: black;
     11 }
     12 .inner {
     13  background: aqua; color: black;
     14  text-align: center;
     15 }
     16 </style>
     17 
     18 <div id="outer">
     19  <div class="inner">Text</div>
     20  <div class="inner">Text</div>
     21 </div>