tor-browser

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

distribute-alias.tentative.html (607B)


      1 <!doctype html>
      2 <link rel=author href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez">
      3 <link rel=author href="https://mozilla.org" title="Mozilla">
      4 <link rel=help href="https://github.com/w3c/csswg-drafts/issues/6156">
      5 <title>text-justify: distribute is a parse-time alias of inter-character</title>
      6 <script src="/resources/testharness.js"></script>
      7 <script src="/resources/testharnessreport.js"></script>
      8 <script>
      9  test(function() {
     10    let style = document.createElement("div").style;
     11    style.textJustify = "distribute";
     12    assert_equals(style.textJustify, "inter-character");
     13  });
     14 </script>