summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/467460-1.html
blob: cbef8e92da94c43d212df6862e6b36a1c0f081c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">

function m()
{
  document.getElementById("f").style.position = "fixed";
}

</script>
</head>
<body onload="m();">
  <div style="transform: translate(50px, 50px); border: 1px solid red; width: 7ch;">
    A
    <div id="f" style="left: 50px; top: 100px; border: 1px solid blue; width: 7ch;">
      0
    </div>
  </div>
</body>
</html>