diff options
Diffstat (limited to 'testing/web-platform/tests/css/css-text/white-space/text-wrap-balance-001.html')
-rw-r--r-- | testing/web-platform/tests/css/css-text/white-space/text-wrap-balance-001.html | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-text/white-space/text-wrap-balance-001.html b/testing/web-platform/tests/css/css-text/white-space/text-wrap-balance-001.html new file mode 100644 index 0000000000..3360681d0f --- /dev/null +++ b/testing/web-platform/tests/css/css-text/white-space/text-wrap-balance-001.html @@ -0,0 +1,32 @@ +<!DOCTYPE html> +<link rel="help" href="https://w3c.github.io/csswg-drafts/css-text-4/#text-wrap"> +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> +<style> +#container { + width: 20ch; +} +.balance { + text-wrap: balance; +} +</style> +<div id="container"></div> +<script> +const container = document.getElementById('container'); +for (const text of [ + 'Balancing should', + 'Balancing should not change', + 'Balancing should not change the number of lines.', + ]) { + const normal = document.createElement('div'); + const balance = document.createElement('div'); + normal.textContent = text; + balance.textContent = text; + balance.classList.add('balance'); + container.appendChild(normal); + container.appendChild(balance); + test(() => { + assert_equals(normal.offsetHeight, balance.offsetHeight); + }); +} +</script> |