tor-browser

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

display-valid.html (758B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <meta charset="utf-8">
      5 <title>CSS Display: Parsing display with valid values</title>
      6 <link rel="author" title="Ethan Jimenez" href="mailto:ethavar@microsoft.com">
      7 <link rel="help" href="https://tabatkins.github.io/specs/css-masonry/#masonry-containers">
      8 <meta name="assert" content="display supports the new values 'grid-lanes | inline-grid-lanes'.">
      9 <script src="/resources/testharness.js"></script>
     10 <script src="/resources/testharnessreport.js"></script>
     11 <script src="/css/support/parsing-testcommon.js"></script>
     12 </head>
     13 <body>
     14 <script>
     15 // https://tabatkins.github.io/specs/css-masonry/#masonry-containers
     16 test_valid_value("display", "grid-lanes");
     17 test_valid_value("display", "inline-grid-lanes");
     18 </script>
     19 </body>
     20 </html>