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/webkit-border-radius.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>-webkit-border-radius:inherit applies zoom</title>
<link rel=match href=border-radius-ref.html>
<style>
.zoomed {
background: coral;
width: 100px;
height: 100px;
border: 5px solid black;
-webkit-border-radius: inherit;
zoom: 2;
}
</style>
<div style="-webkit-border-radius:20px; display:contents">
<div class=zoomed></div>
</div>