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/matrix-zoom.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>Zoom property on elements with a transformation matrix used</title>
<link rel="author" href="mailto:salipov@mozilla.com" title="Seva Alipov">
<link rel="match" href="matrix-zoom-ref.html">
<style>
div {
width: 100px;
height: 100px;
background-color: green;
zoom: 2;
}
</style>
<div style="transform: translate(100px, 100px)"></div>
<div style="transform: matrix(1, 0, 0, -1, 100, 100)"></div>