tor-browser

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

rect-function-valid.html (1286B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <meta charset="utf-8">
      5 <title>CSS Shapes Module Level 1: parsing the rect() function</title>
      6 <link rel="help" href="https://drafts.csswg.org/css-shapes-1/#funcdef-basic-shape-rect">
      7 <meta name="assert" content="Tests parsing of the inset() function">
      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("clip-path", "rect(0 0 0 0)", "rect(0px 0px 0px 0px)");
     15 test_valid_value("clip-path", "rect(10px auto 20px 30px)");
     16 test_valid_value("clip-path", "rect(auto auto auto auto)");
     17 test_valid_value("clip-path", "rect(10% 20% 15% 12%)");
     18 test_valid_value("clip-path", "rect(10% 95% 97% 12%)");
     19 test_valid_value("clip-path", "rect(-10% -20% -15% -12%)");
     20 test_valid_value("clip-path", "rect(10px 12% 20px 30px round 100%)");
     21 test_valid_value("clip-path", "rect(10px 12% 20px 30px round 0 1px)", "rect(10px 12% 20px 30px round 0px 1px)");
     22 test_valid_value("clip-path", "rect(10px 12% 20px 30px round 0px 1px 2%)");
     23 test_valid_value("clip-path", "rect(10px 12% 20px 30px round 0px 1px 2% 3em)");
     24 test_valid_value("clip-path", "rect(10px 12% 20px 30px round 20% / 0px 1px 2% 3em)");
     25 </script>
     26 </body>
     27 </html>