Add reftests for the Wikipedia jiggling text bug.

This commit is contained in:
jruderman@hmc.edu 2008-03-27 23:08:16 -07:00
parent 003546c9e7
commit 80bd571b8c
4 changed files with 40 additions and 0 deletions

View File

@ -0,0 +1,8 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
</head>
<body>
<span id="a"><span>a</span>b<span>א</span>c</span>
</body>
</html>

View File

@ -0,0 +1,14 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
<script type="text/javascript">
function c()
{
document.getElementById("a").style.height = "10em";
}
</script>
</head>
<body onload="c();">
<span id="a"><span>a</span>b<span>א</span>c</span>
</body>
</html>

View File

@ -0,0 +1,16 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
<script type="text/javascript">
function c()
{
document.getElementById("a").style.height = "10em";
document.body.offsetHeight;
document.getElementById("a").style.height = "";
}
</script>
</head>
<body onload="c();">
<span id="a"><span>a</span>b<span>א</span>c</span>
</body>
</html>

View File

@ -23,3 +23,5 @@ random-if(MOZ_WIDGET_TOOLKIT=="gtk2") == 386339.html 386339-ref.html
== 413542-2.html 413542-2-ref.html
== 413928-1.html 413928-1-ref.html
== 413928-2.html 413928-2-ref.html
== 425338-1a.html 425338-1-ref.html
== 425338-1b.html 425338-1-ref.html