summaryrefslogtreecommitdiffstats
path: root/layout/reftests/transform/snapping-1.html
blob: d8198cf95864ae9fec106eca4c55208621a3a169 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html>
<head>
<style>
div { 
  background: red;
  margin-left: 100.5px;
  height: 100px;
  width: 100px;
  transform-origin: bottom left;
  transform: rotate(-90deg) translate(-100px, 0);
  transform-origin: bottom left;
  transform: rotate(-90deg) translate(-100px, 0);
}
</style>
</head>
<body>
  <div></div>
</html>