<!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:[email protected]">
<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>