tor-browser

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

overlay-valid.html (627B)


      1 <!DOCTYPE html>
      2 <title>CSS Positioned Layout Module Test: parsing overlay with valid values</title>
      3 <link rel="help" href="https://drafts.csswg.org/css-position-4/#overlay">
      4 <script src="/resources/testharness.js"></script>
      5 <script src="/resources/testharnessreport.js"></script>
      6 <script src="/css/support/parsing-testcommon.js"></script>
      7 <script>
      8  // overlay: none | auto
      9  test_valid_value("overlay", "none");
     10  test_valid_value("overlay", "auto");
     11  test_valid_value("overlay", "inherit");
     12  test_valid_value("overlay", "initial");
     13  test_valid_value("overlay", "revert");
     14  test_valid_value("overlay", "unset");
     15 </script>