summaryrefslogtreecommitdiffstats
path: root/layout/generic/test/test_bug389630.html
blob: e6a8fabf40f7474045d0a199e3a9bf35e5aa04d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=389630
-->
<head>
  <title>Test for Bug 389630</title>
  <script 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();
}
  SimpleTest.requestFlakyTimeout("untriaged");
  setTimeout(boom, 500);
  SimpleTest.waitForExplicitFinish();
</script>
</pre>
</body>
</html>