diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
commit | 43a97878ce14b72f0981164f87f2e35e14151312 (patch) | |
tree | 620249daf56c0258faa40cbdcf9cfba06de2a846 /testing/web-platform/tests/svg/text/reftests/writing-mode-dynamic-change.html | |
parent | Initial commit. (diff) | |
download | firefox-upstream.tar.xz firefox-upstream.zip |
Adding upstream version 110.0.1.upstream/110.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/svg/text/reftests/writing-mode-dynamic-change.html')
-rw-r--r-- | testing/web-platform/tests/svg/text/reftests/writing-mode-dynamic-change.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/testing/web-platform/tests/svg/text/reftests/writing-mode-dynamic-change.html b/testing/web-platform/tests/svg/text/reftests/writing-mode-dynamic-change.html new file mode 100644 index 0000000000..7a325b0ca4 --- /dev/null +++ b/testing/web-platform/tests/svg/text/reftests/writing-mode-dynamic-change.html @@ -0,0 +1,19 @@ +<!DOCTYPE html> +<meta charset="utf-8"> +<link rel="match" href="writing-mode-dynamic-change-ref.html"> +<link rel="help" href="https://crbug.com/1273783"> +<body> +<svg style="border: 1px solid gray;"> + <text id="test-text" y="0" x="50" font-size="16">ππΊπππ’</text> +</svg> +<p id="result"></p> + +<script> +var text = document.getElementById("test-text"); +text.getBBox(); + +text.style.writingMode = "vertical-rl"; +var bbox = text.getBBox(); +result.textContent = `BBox: ${bbox.width} x ${bbox.height}`; +</script> +</body> |