diff options
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> |