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/border.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>border:inherit applies zoom</title>
<link rel="match" href="border-ref.html">
<style>
body > div {
border: 1px solid black;
}
body > div > div {
zoom: 10;
width: 10px;
height: 10px;
border: 0px solid black;
border-width: inherit;
background: green;
}
</style>
<div>
<div></div>
</div>