blob: 7747a43df3c14bd706b96ea3d754bc5e8d933b7a [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="container">
<div>
This line should line up with the text above.
</div>
<div class="spacer"></div>
</div>
</div>