Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-viewport/zoom/text-indent-svg.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>CSS zoom does not apply to text-indent on SVG primitives when specified and inherited</title>
<link rel="match" href="reference/text-indent-svg-ref.html">
<style>
.indent {
text-indent: 1rem;
}
.zoom {
zoom: 2;
}
</style>
<svg width="150" height="30">
<text class="indent" x="0" y="20">unzoomed</text>
</svg>
<div class="zoom">
<svg width="150" height="30">
<text class="indent" x="0" y="20">zoomed</text>
</svg>
</div>