tor-browser

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

scrollbar-gutter-valid.html (802B)


      1 <!doctype html>
      2 <meta charset="utf-8">
      3 <title>CSS Overflow: parsing valid scrollbar-gutter declarations</title>
      4 <link rel="author" title="Felipe Erias Morandeira" href="mailto:felipeerias@gmail.com"/>
      5 <link rel="help" href="https://www.w3.org/TR/css-overflow-4/#scollbar-gutter-property"/>
      6 <meta name="assert" content="Parsing valid scrollbar-gutter declarations">
      7 <script src="/resources/testharness.js"></script>
      8 <script src="/resources/testharnessreport.js"></script>
      9 <script src="/css/support/parsing-testcommon.js"></script>
     10 
     11 <script>
     12 
     13    test_valid_value("scrollbar-gutter", "auto");
     14    test_valid_value("scrollbar-gutter", "stable");
     15    test_valid_value("scrollbar-gutter", "stable both-edges");
     16 
     17    test_valid_value("scrollbar-gutter", "both-edges stable", "stable both-edges");
     18 
     19 </script>