blob: 688cae04793081369b9e3bd709d6e04782e6c9e7 [file] [log] [blame]
<html>
<body>Page with deep tree</body>
<script>
var node = document.body;
for(let i = 0; i < 202; i++) {
node = node.appendChild(document.createElement('div'));
node.style.position = 'fixed';
node.appendChild(document.createTextNode('text'));
}
</script>
</html>