blob: 2546a0fb2421a7fb4cf9befdcfd645a7ae364a99 [file] [log] [blame]
commit-queue@webkit.org228632c2019-10-17 19:21:39 +00001<!DOCTYPE html>
2<html>
3
4<head>
5 <style>
6 * {
7 margin: 0;
8 padding: 0;
9 }
10
11 div {
12 width: 120px;
13 height: 60px;
14 background-color: green;
15 position: absolute;
16 }
17 </style>
18</head>
19
20<body>
21 <p>You should see no red boxes below</p>
22 <div>
23 </div>
24 <div style="transform: translateX(150px)">
25 </div>
26 <div style="transform: translateX(300px)">
27 </div>
28 <div style="transform: translate(0, 90px)">
29 </div>
30 <div style="transform: translate(150px, 90px)">
31 </div>
32</body>
33
34</html>