diff options
Diffstat (limited to 'testing/web-platform/tests/svg/text/reftests/writing-mode-dynamic-change-ref.html')
-rw-r--r-- | testing/web-platform/tests/svg/text/reftests/writing-mode-dynamic-change-ref.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/testing/web-platform/tests/svg/text/reftests/writing-mode-dynamic-change-ref.html b/testing/web-platform/tests/svg/text/reftests/writing-mode-dynamic-change-ref.html new file mode 100644 index 0000000000..58b556cdc8 --- /dev/null +++ b/testing/web-platform/tests/svg/text/reftests/writing-mode-dynamic-change-ref.html @@ -0,0 +1,14 @@ +<!DOCTYPE html> +<meta charset="utf-8"> +<body> +<svg style="border: 1px solid gray;"> + <text id="test-text" y="0" x="50" font-size="16" writing-mode="vertical-rl">ππΊπππ’</text> +</svg> +<p id="result"></p> + +<script> +var text = document.getElementById("test-text"); +var bbox = text.getBBox(); +result.textContent = `BBox: ${bbox.width} x ${bbox.height}`; +</script> +</body> |