This commit is contained in:
Jesse Ruderman 2008-10-16 14:49:40 -07:00
Родитель 290b6c5b33
Коммит 72071bbb90
2 изменённых файлов: 46 добавлений и 0 удалений

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

@ -0,0 +1,45 @@
<html>
<head>
<script type="text/javascript">
var w_inc = 1;
var h_inc = 1;
function resizeContainer(id) {
var e = document.getElementById(id);
var w = e.clientWidth;
if (w > 800 && w_inc==1)
w_inc=-1;
if (w < 100 && w_inc==-1)
w_inc=1;
e.style.width=(w+w_inc)+'px';
var h = e.clientHeight;
if (h > 800 && h_inc==1)
h_inc=-1;
if (h < 100 && h_inc==-1)
h_inc=1;
e.style.height=(h+h_inc)+'px';
}
function boom() {
var table = document.getElementById('table');
var newNode = document.createElement('caption');
table.appendChild(newNode);
resizeContainer('test');
newNode = document.createElement('caption');
table.appendChild(newNode);
}
</script>
<title></title>
</head>
<body onload="boom()">
<div id="test">
<table id="table" width="100%" height="100%"><tbody><tr><td></td></tr></tbody></table>
</div>
</body>
</html>

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

@ -25,6 +25,7 @@ load 366556-1.xhtml
load 367673-1.xhtml
load 368166-1.xhtml
load 370876-1.html
load 370897-1.html
load 373611-1.html
load 374356-1.html
load 374819-1.html