summaryrefslogtreecommitdiffstats
path: root/layout/generic/crashtests/1039454-1.html
blob: b049cbfa317a66c9e76ed6ff28250f89752fc423 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<!DOCTYPE HTML>
<body>
<div id="outer" style="width:200px; height:200px; background:blue; transform:translateY(10px)">
  <div id="inner" style="width:200px; height:100px; background:yellow; transform:translateX(100px)">
  </div>
</div>
<script>
console.log(outer.getBoundingClientRect());
outer.style.width = "400px";
console.log(outer.getBoundingClientRect());
outer.style.transform = "translateY(100px)";
</script>