tor-browser

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

transform-box-valid.html (818B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <meta charset="utf-8">
      5 <title>CSS Transform Module Level 1: parsing transform-box with valid values</title>
      6 <link rel="help" href="https://drafts.csswg.org/css-transforms/#transform-box-property">
      7 <meta name="assert" content="transform-box supports the full grammar 'content-box | border-box | fill-box | stroke-box | view-box'.">
      8 <script src="/resources/testharness.js"></script>
      9 <script src="/resources/testharnessreport.js"></script>
     10 <script src="/css/support/parsing-testcommon.js"></script>
     11 </head>
     12 <body>
     13 <script>
     14 test_valid_value("transform-box", "content-box");
     15 test_valid_value("transform-box", "border-box");
     16 test_valid_value("transform-box", "fill-box");
     17 test_valid_value("transform-box", "stroke-box");
     18 test_valid_value("transform-box", "view-box");
     19 </script>
     20 </body>
     21 </html>