tor-browser

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

flexbox_computedstyle_justify-content-space-between.html (654B)


      1 <!DOCTYPE html>
      2 <title>flexbox | computed style | justify-content: space-between</title>
      3 <link rel="author" href="http://opera.com" title="Opera Software">
      4 <link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#justify-content-property">
      5 <script src="/resources/testharness.js"></script>
      6 <script src="/resources/testharnessreport.js"></script>
      7 <meta name="flags" content="dom">
      8 <style>
      9 body {
     10 color: red;
     11 justify-content: space-between;
     12 }
     13 </style>
     14 <div id="log"></div>
     15 <script>
     16 test(function() {
     17    var body = document.body;
     18 
     19    assert_equals(getComputedStyle(body).getPropertyValue("justify-content"),
     20           "space-between");
     21 });
     22 </script>