tor-browser

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

justify-self-computed.html (1314B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <meta charset="utf-8">
      5 <title>CSS Box Alignment Level 3: getComputedStyle().justifySelf</title>
      6 <link rel="help" href="https://drafts.csswg.org/css-align-3/#propdef-justify-self">
      7 <meta name="assert" content="justify-self computed value is as specified.">
      8 <script src="/resources/testharness.js"></script>
      9 <script src="/resources/testharnessreport.js"></script>
     10 <script src="/css/support/computed-testcommon.js"></script>
     11 </head>
     12 <body>
     13 <div id="target"></div>
     14 <script>
     15 test_computed_value("justify-self", "auto");
     16 test_computed_value("justify-self", "normal");
     17 test_computed_value("justify-self", "stretch");
     18 
     19 test_computed_value("justify-self", "baseline");
     20 test_computed_value("justify-self", "last baseline");
     21 
     22 test_computed_value("justify-self", "center");
     23 test_computed_value("justify-self", "start");
     24 test_computed_value("justify-self", "end");
     25 test_computed_value("justify-self", "self-start");
     26 test_computed_value("justify-self", "self-end");
     27 test_computed_value("justify-self", "flex-start");
     28 test_computed_value("justify-self", "flex-end");
     29 test_computed_value("justify-self", "unsafe center");
     30 test_computed_value("justify-self", "safe self-end");
     31 test_computed_value("justify-self", "left");
     32 test_computed_value("justify-self", "unsafe right");
     33 </script>
     34 </body>
     35 </html>