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