summaryrefslogtreecommitdiffstats
path: root/layout/reftests/pagination/resize-reflow-001.html
blob: 3a9acdcae095c4834cfcad8e87c1d24da21efe72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE HTML>
<html class="reftest-wait">
<title>Resize Reflow Harness</title>
  <style>
    html,body { height: 100%; overflow:hidden; }
  </style>
<body onload="
var iframe = document.getElementById('outer')
iframe.style.width = '50em';
iframe.contentDocument.body.offsetWidth;
iframe.style.width = '28em';
document.documentElement.className = '';
">

<iframe id="outer" src="resize-reflow-001.inner.html" height="90%" frameborder=0></iframe>

<script>

</script>