chromium/third_party/blink/web_tests/external/wpt/css/css-text/text-justify/distribute-alias.tentative.html

<!doctype html>
<link rel=author href="mailto:[email protected]" title="Emilio Cobos Álvarez">
<link rel=author href="https://mozilla.org" title="Mozilla">
<link rel=help href="https://github.com/w3c/csswg-drafts/issues/6156">
<title>text-justify: distribute is a parse-time alias of inter-character</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
  test(function() {
    let style = document.createElement("div").style;
    style.textJustify = "distribute";
    assert_equals(style.textJustify, "inter-character");
  });
</script>