Status: PASS | Duration: 8ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-viewport/zoom/text-indent.html
<!DOCTYPE html> <title>CSS zoom applies to text-indent when specified and inherited</title> <link rel="author" title="Stefan Zager" href="mailto:szager@chromium.org"> <link rel="help" href="https://drafts.csswg.org/css-viewport/"> <link rel="match" href="reference/text-indent-ref.html"> <style> .indent { text-indent: 1rem; } .zoom { zoom: 2; } </style> <div class="indent">unzoomed</div> <div class="zoom"><div class="indent">zoomed</div></div> <div class="indent"><div class="zoom">zoomed inherited</div></div>
/css/css-viewport/zoom/reference/text-indent-ref.html
<!DOCTYPE html> <title>CSS zoom applies to text-indent when specified and inherited</title> <link rel="author" title="Stefan Zager" href="mailto:szager@chromium.org"> <link rel="help" href="https://drafts.csswg.org/css-viewport/"> <style> body { --scale: 1; } div { font-size: calc(1rem * var(--scale)); text-indent: calc(1rem * var(--scale)); } .zoom { --scale: 2; } </style> <div>unzoomed</div> <div class="zoom">zoomed</div></div> <div class="zoom">zoomed inherited</div></div>