52 lines
1.3 KiB
HTML
52 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<head>
|
|
<title>Test that subtree layout with nested overflow preserves scroll anchoring in vertical mode.</title>
|
|
<link rel="author" title="Chris Harrelson" href="mailto:chrishtr@chromium.org">
|
|
<link rel="author" title="Andreu Botella" href="mailto:abotella@igalia.com">
|
|
<link rel="help" href="https://drafts.csswg.org/css-scroll-anchoring/">
|
|
<link rel="match" href="nested-overflow-subtree-layout-vertical-ref.html">
|
|
<script src="/common/reftest-wait.js"></script>
|
|
</head>
|
|
<style>
|
|
#outer {
|
|
overflow: hidden;
|
|
width: 500px;
|
|
height: 500px;
|
|
writing-mode: vertical-rl;
|
|
}
|
|
#inner {
|
|
overflow: auto;
|
|
position: relative;
|
|
width: 2000px;
|
|
height: 500px;
|
|
}
|
|
p {
|
|
font: 48pt monospace;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="outer">
|
|
<div id="inner">
|
|
<p>Anchor</p>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
const outer = document.querySelector("#outer");
|
|
const inner = document.querySelector("#inner");
|
|
|
|
onload = () => {
|
|
requestAnimationFrame(() => {
|
|
requestAnimationFrame(() => {
|
|
outer.scrollTo(-70, 0);
|
|
requestAnimationFrame(() => {
|
|
const elem = document.createElement("p");
|
|
elem.textContent = "FAIL";
|
|
inner.insertBefore(elem, inner.firstChild);
|
|
takeScreenshot();
|
|
});
|
|
});
|
|
});
|
|
};
|
|
</script>
|