Crashtest for bug 660451; r=roc

This commit is contained in:
Ehsan Akhgari 2011-06-28 17:10:27 -04:00
parent ba66014efb
commit 5ed6e406a3
2 changed files with 25 additions and 0 deletions

View File

@ -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>

View File

@ -364,6 +364,7 @@ load 650499-1.html
load 656130-1.html
load 656130-2.html
load 660416.html
load 660451-1.html
load 665853.html
load text-overflow-form-elements.html
load text-overflow-iframe.html