Bug 656130 - Part 2: More crashtests; r=roc

This commit is contained in:
Ehsan Akhgari 2011-06-28 17:10:29 -04:00
Родитель 941f2f10c3
Коммит 947ce13613
2 изменённых файлов: 25 добавлений и 0 удалений

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

@ -0,0 +1,24 @@
<!DOCTYPE html>
<html>
<head>
<script>
function doe() {
document.getElementById('b').setAttribute('style', 'position: absolute;');
document.body.offsetHeight;
document.body.setAttribute('style', 'position: relative;');
document.body.offsetHeight;
document.getElementById('b').setAttribute('style', '');
}
setTimeout(doe,0);
</script>
</head>
<body>
<span style="position: relative; ">
<div>
<div id="b">
</div>
</div>
</span>
</body>
</html>

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

@ -362,6 +362,7 @@ load 646983-1.html
load 647332-1.html
load 650499-1.html
load 656130-1.html
load 656130-2.html
load 660416.html
load text-overflow-form-elements.html
load text-overflow-iframe.html