Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /svg/text/reftests/writing-mode-dynamic-change.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<link rel="match" href="writing-mode-dynamic-change-ref.html">
<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>