blob: dd0732e0247c309b076d8b508379a2bb6b4ff8be (
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
33
34
35
36
37
38
39
40
41
42
43
44
|
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=394239
-->
<head>
<title>Test for Bug 394239</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<script src="/tests/SimpleTest/EventUtils.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
<style>
#a::after { content:"anonymous text"; }
</style>
</head>
<body>
<div id="content">
<object id="a" style="position: relative;">
<div style="position: absolute;">
<input>
</div>ع
<div style="position: absolute;">
<span style="position: fixed;">t</span>
</div>
</object>
</div>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=394239">Mozilla Bug 394239</a>
<pre id="test">
<script class="testbody" type="text/javascript">
/** Test for Bug 394239 **/
function test()
{
$("a").style.direction="rtl";
ok(true, "Should not crash");
SimpleTest.finish();
}
SimpleTest.requestFlakyTimeout("untriaged");
setTimeout(test, 500);
SimpleTest.waitForExplicitFinish();
</script>
</pre>
</body>
</html>
|