Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<meta charset="utf-8">
<title>Zoom property on elements with a 3D transformation matrix used</title>
<link rel="author" href="mailto:salipov@mozilla.com" title="Seva Alipov">
<link rel="author" href="https://mozilla.com" title="Mozilla">
<link rel="match" href="matrix3d-zoom-ref.html">
<style>
div {
width: 100px;
height: 100px;
background: green;
zoom: 2;
}
</style>
<div style="transform: translate(100px, 100px)"></div>
<div style="transform: matrix3d(
0.5,0,-0.75,0,
0.75,1.25,-1,0,
0.75,0,0.5,0,
25,0,15,1
);"></div>