tor-browser

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

relayout-input.html (538B)


      1 <!DOCTYPE html>
      2 <link rel="help" href="https://crbug.com/1082447" />
      3 <script src="/resources/testharness.js"></script>
      4 <script src="/resources/testharnessreport.js"></script>
      5 <script src="/resources/check-layout-th.js"></script>
      6 <div style="display: flex; width: 100px;">
      7  <input id="target" style="position: relative; height: 20px; flex: 1; width: 0px;" data-expected-width="100" />
      8 </div>
      9 <script>
     10 test(function() {
     11  document.body.offsetTop;
     12  document.getElementById('target').value = 'text';
     13  checkLayout('#target');
     14 });
     15 </script>