mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
20 lines
451 B
HTML
20 lines
451 B
HTML
<!DOCTYPE HTML>
|
|
<html class="reftest-wait">
|
|
<title>Resize Reflow Harness</title>
|
|
<style>
|
|
html,body { height: 100%; }
|
|
</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>
|