blob: 7a325b0ca4cf898f4aa07230d22842ac9c3ddb8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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>
|