summaryrefslogtreecommitdiffstats
path: root/layout/reftests/pagination/resize-reflow-000.html
blob: b9afc83c86a56eed4bed72537bc1b4770b94ce9b (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
<!DOCTYPE HTML>
<html>
<head>
  <title>Resize Reflow Test</title>
</head>
<body>

<div style="column-width: 12em;
            border: silver solid;
            width: 30em" id="outer">
x <div style="border: dotted;
              background: aqua;
              color: gray;">
        blah<br>
        blah<br>
        blah<br>
        blah
  </div>
</div>

<script>
document.body.offsetWidth;
n = document.getElementById("outer").firstChild;
n.data = ' ';
</script>

</body>
</html>