Add reftests for dynamic cross-element ligatures

git-svn-id: svn://10.0.0.236/trunk@242051 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
jruderman%hmc.edu 2007-12-24 01:38:11 +00:00
parent cc5ff1ca25
commit 5d5e5ad743
4 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,8 @@
<html>
<head>
</head>
<body>
<div id="div" style="font-size: 180px">fi</div>
</body>
</html>

View File

@ -0,0 +1,16 @@
<html>
<head>
<script>
function m()
{
document.body.offsetHeight;
var div = document.getElementById("div");
div.appendChild(document.createTextNode("i"));
}
</script>
</head>
<body onload="m();">
<div id="div" style="font-size: 180px"><span>f</span></div>
</body>
</html>

View File

@ -0,0 +1,16 @@
<html>
<head>
<script>
function m()
{
document.body.offsetHeight;
var parent = document.getElementById("parent");
parent.appendChild(document.createTextNode("i"));
}
</script>
</head>
<body onload="m();">
<div id="div" style="font-size: 180px"><span>f</span><span id="parent"></span></div>
</body>
</html>

View File

@ -464,6 +464,8 @@ random-if(MOZ_WIDGET_TOOLKIT=="cocoa") == 379316-2.html 379316-2-ref.html # bug
== 384762-1.html about:blank
== 384876-1.html 384876-1-ref.html
== 385533-1.html about:blank # assertion test
== 385569-1a.html 385569-1-ref.html
== 385569-1b.html 385569-1-ref.html
== 385823-1.html 385823-1-ref.html
== 385823-2a.html 385823-2-ref.html
fails == 385823-2b.html 385823-2-ref.html