blob: 9a34724b6cd104041f9de45f3785ca62137eb03c [file] [log] [blame]
<!DOCTYPE html>
<style>
.composited {
/* Force compositing without creating a stacking context */
backface-visibility: hidden;
}
.spacer {
height: 2000px;
}
.container {
width: 500px;
height: 500px;
overflow: scroll;
}
</style>
<div class="composited">
Ref text.
<div class="composited container">
<div>
This line should line up with the text above.
</div>
<div class="spacer"></div>
</div>
</div>