summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-text/text-justify/distribute-alias.tentative.html
blob: 62854b52c7999adba053073c002e8f6c119ce087 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!doctype html>
<link rel=author href="mailto:emilio@crisal.io" 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>