23 display: inline-block;
24 background-color: green;
32 function addChildren(test
)
34 for (i
= 0; i
< 20; i
++) {
35 box
= document
.createElement("div");
36 box
.setAttribute('class', 'contents');
37 box
.setAttribute('id', i
);
38 test
.appendChild(box
);
44 test
= document
.getElementById("test");
47 document
.body
.offsetTop
;
49 window
.onload
= runTest
;
56 Tests positioned movement layout when its height has changed.