summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-text/text-spacing-trim/text-spacing-trim-dynamic-001.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-text/text-spacing-trim/text-spacing-trim-dynamic-001.html')
-rw-r--r--testing/web-platform/tests/css/css-text/text-spacing-trim/text-spacing-trim-dynamic-001.html41
1 files changed, 41 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-text/text-spacing-trim/text-spacing-trim-dynamic-001.html b/testing/web-platform/tests/css/css-text/text-spacing-trim/text-spacing-trim-dynamic-001.html
new file mode 100644
index 0000000000..3fc949efd1
--- /dev/null
+++ b/testing/web-platform/tests/css/css-text/text-spacing-trim/text-spacing-trim-dynamic-001.html
@@ -0,0 +1,41 @@
+<!DOCTYPE html>
+<meta charset="utf-8">
+<link rel="help" href="https://drafts.csswg.org/css-text-4/#text-spacing-trim-property">
+<link rel="match" href="text-spacing-trim-space-all-001-ref.html">
+<meta name="variant" content="?class=halt">
+<meta name="variant" content="?class=chws">
+<script src="support/variant-class.js"></script>
+<style>
+@font-face {
+ font-family: halt-font;
+ src: url('/fonts/noto/cjk/NotoSansCJKjp-Regular-subset-halt.otf');
+}
+@font-face {
+ font-family: chws-font;
+ src: url('/fonts/noto/cjk/NotoSansCJKjp-Regular-subset-chws.otf');
+}
+#container {
+ font-family: halt-font;
+ font-size: 20px;
+ width: 4em;
+}
+.chws #container {
+ font-family: chws-font;
+}
+#container > div > span {
+ background: black;
+}
+.off {
+ text-spacing-trim: space-all;
+}
+</style>
+<div id="container">
+ <div><span>国)(国国((国(国</span></div>
+</div>
+<script>
+document.fonts.ready.then(() => {
+ document.body.offsetTop;
+ const container = document.getElementById('container');
+ container.classList.add('off');
+});
+</script>