blob: 5d3796566b9c68abdc0defb016c1675d1ea8c9d0 (
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
|
<!DOCTYPE html>
<title>CSS Writing Modes Test: many levels of bidi inline fragmentations does not crash</title>
<link rel="help" href="http://crbug.com/925247">
<link rel="author" title="Koji Ishii" href="mailto:kojii@chromium.org">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<style>
span {
border: blue solid 2px;
}
</style>
<body>
<div>
<span>
1‮2‭
<span>3‮4‭
<span>5‮6‭
<span>7‮8‭</span>
</span>
</span>
</span>
x
</div>
<script>
test(() => {
document.body.offsetTop;
});
</script>
</body>
|