blob: 2b5cb53100f5e4048b3b369e4969498299262620 [file] [log] [blame]
<!DOCTYPE html>
<style>
.composited-box {
position: absolute;
left: 0;
top: 1000px;
height: 300px;
width: 300px;
background-color: green;
}
.top-box {
position: absolute;
left: 200px;
top: 1200px;
height: 300px;
width: 300px;
background-color: blue;
z-index: 1;
}
</style>
<!--
This test ensures that overlap testing to determine compositing requirements
works correctly for layers outside the main frame's viewport. The blue box
should appear on top of the green box.
-->
<div class="composited-box"></div>
<div class="top-box"></div>
<script>
window.scrollTo(0, 1500);
</script>