Unit test for bug 389630 based on Jesse Ruderman's testcase

This commit is contained in:
smontagu@smontagu.org 2007-09-03 09:59:44 -07:00
Родитель 58d80d14bc
Коммит 6381697606
2 изменённых файлов: 33 добавлений и 0 удалений

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

@ -50,6 +50,7 @@ _TEST_FILES = test_bug323656.html \
test_bug382429.html \
test_bug384527.html \
test_bug385751.html \
test_bug389630.html \
test_bug391747.html \
$(NULL)

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

@ -0,0 +1,32 @@
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=389630
-->
<head>
<title>Test for Bug 389630</title>
<script type="text/javascript" src="/MochiKit/MochiKit.js"></script>
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
<style>.fl:first-letter { }
</style>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=389630">Mozilla Bug 389630</a>
<div id="content" style="direction: rtl;"><table><tr><td width="1"><div id="div" class="fl"><font><span>x y</span></font></div></td></tr></table></div>
<pre id="test">
<script class="testbody" type="text/javascript">
function boom()
{
/** Test for Bug 389630 **/
document.getElementById("div").className = "";
ok(true, "Should not crash");
SimpleTest.finish();
}
setTimeout(boom, 500);
SimpleTest.waitForExplicitFinish();
</script>
</pre>
</body>
</html>