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/explicit-inherit/outline.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>outline:inherit applies zoom</title>
<link rel=match href=outline-ref.html>
<style>
.zoomed {
background: coral;
width: 50px;
height: 50px;
margin: 50px;
outline-width: inherit;
outline-offset: inherit;
outline-style: solid;
outline-color: black;
zoom: 2;
}
</style>
<div style="outline-width:10px; outline-offset:5px; display:contents">
<div class=zoomed></div>
</div>