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-shadow.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>CSS zoom applies to text-shadow when specified and inherited</title>
<link rel="author" title="Stefan Zager" href="mailto:szager@chromium.org">
<link rel="match" href="reference/text-shadow-ref.html">
<style>
.shadow {
text-shadow: 5px 5px hotpink;
}
.zoom {
zoom: 2;
}
</style>
<div class="shadow">unzoomed</div>
<div class="zoom"><div class="shadow">zoomed</div></div>
<div class="shadow"><div class="zoom">zoomed inherited</div></div>