summaryrefslogtreecommitdiffstats
path: root/layout/generic/crashtests/1367413-1.html
blob: 1b77e9c52ad5b6465eb6570e2185ed7ba037d510 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE HTML>
<title>Test for dynamic re-pagination of absolutely positioned elements</title>
<link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com">
<link rel="author" title="L. David Baron" href="https://dbaron.org/">
<style>

#multicol {
  columns: 3;
  column-fill: auto;
  column-gap: 15px;
  height: 500px;
  width: 300px;
  background: yellow;
}

#relpos {
  position: relative;
  background: aqua;
  height: 250px;
}

#abspos {
  position: absolute;
  top: 60px;
  right: 0;
  height: 80px;
  width: 50px;
  background: blue;
  transform: scale(0.9);
}

#overflow {
  height: 100px;
  width: 30px;
  background: grey;
}
</style>
<body style="width: 700px">

<div id="multicol">
  <div id="relpos">
    <div id="abspos"><div id="overflow"></div></div>
  </div>
</div>

<script>

var mc = document.getElementById("multicol");
mc.offsetHeight; // flush layout
mc.style.height = "140px";
mc.offsetHeight; // flush layout
mc.parentNode.style.width = "800px";

</script>