blob: 2d0e92e6a1c58e754e8d51fa69f984544c3cd510 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!DOCTYPE html>
<html>
<head>
<title>Bug 1392161 - Transform translate rounding (viewport size)</title>
<style>
div {
height: 100px;
width: 100px;
background: blue;
transform: scale(100000) translate(0.0005vw) scale(0.00001);
}
</style>
</head>
<body>
<div></div>
</body>
</html>
|