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-decoration-thickness.html - WPT Dashboard Interop Dashboard
<title>CSS zoom applies to text-decoration-thickness when specified and inherited</title>
<link rel="author" title="Brent Fulgham" href="mailto:bfulgham@apple.com">
<link rel="match" href="reference/text-decoration-thickness-ref.html">
<style>
.decoration-thickness {
text-decoration: underline blue;
text-decoration-thickness: 5px;
}
.zoom {
zoom: 2;
}
#zoomed-inherited {
text-decoration-thickness: inherit;
}
</style>
<div id="unzoomed" class="decoration-thickness">unzoomed</div>
<div class="zoom"><div id="zoomed" class="decoration-thickness">zoomed</div></div>
<div class="decoration-thickness"><div id="zoomed-inherited" class="zoom">zoomed inherited</div></div>