blob: 1899f732a48b56e0c171dd8a5b72a70ad58e32c4 [file] [log] [blame]
<!DOCTYPE html> <!-- webkit-test-runner [ internal:AsyncOverflowScrollingEnabled=true ] -->
<html>
<head>
<style>
.wrapper {
overflow-x: hidden;
margin: 20px 50px;
}
.video {
width: 300px;
height: 100px;
will-change: transform;
}
.obscurer {
position: absolute;
top: 18px;
left: 48px;
width: 320px;
height: 120px;
background-color: gray;
}
.test {
position: relative;
width: 100%;
height: 300px;
background-color: green;
}
</style>
</head>
<body>
<section class="wrapper">
<div class="video"></div>
<div class="test">Some text here</div>
</section>
<!--Hide the video; we just want its side-effects -->
<div class="obscurer"></div>
</body>
</html>