This commit is contained in:
Mats Palmgren 2008-09-16 03:37:00 +02:00
Родитель 15b287578f
Коммит 60a30fbe2b
2 изменённых файлов: 40 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,39 @@
<html><head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Testcase for bug </title>
<style type="text/css">
html,body {
color:black; background-color:white; font-size:16px; padding:0; margin:0;
}
</style>
</head>
<body>
<div id="Image"></div>
<script>
var v;
function insertImage() {
var img_node = document.createElement('iframe');
img_node.src = "441360_data.gif";
var image_div = document.getElementById('Image');
image_div.appendChild(img_node);
}
insertImage();
v = document.body.offsetHeight;
insertImage();
v = document.body.offsetHeight;
insertImage();
v = document.body.offsetHeight;
insertImage();
v = document.body.offsetHeight;
</script>
</body>
</html>

Просмотреть файл

@ -39,4 +39,5 @@ load 421393-1.html
load 421813-1.html
load 423270-1.html
load 429899-1.html
load 441360.html