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/box-shadow.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>CSS zoom applies to box-shadow when specified and inherited</title>
<link rel="author" title="Brent Fulgham" href="mailto:bfulgham@apple.com">
<link rel="match" href="reference/box-shadow-ref.html">
<style>
.shadow {
box-shadow: 5px 5px 2px black;
}
.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>