blob: ebb631432d1caecc8bc41556d438f9b98436726c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<!DOCTYPE html>
<html class="reftest-wait">
<title>CSS Containment Test: Scrolling overflow works when paint is contained"</title>
<link rel="help" href="https://drafts.csswg.org/css-contain-1/#containment-paint">
<meta name="assert" content="Scrolling overflow works when paint is contained.">
<script src="/common/reftest-wait.js"></script>
<script src="/common/rendering-utils.js"></script>
<style>
.content {
height: 100vh;
width: 100%;
}
</style>
<body>
<div class="content"></div>
<script>
waitForAtLeastOneFrame().then(() => {
document.body.scrollTop = 100;
takeScreenshot();
});
</script>
</body>
</html>
|