blob: 9ccb822f107f429651c7949995412c9f2a80feea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!doctype html>
<meta charset=utf-8>
<title></title>
<link rel=match href=hypothetical-box-scroll-viewport-ref.html>
<link rel="help"
href="https://www.w3.org/TR/CSS2/visudet.html#abs-non-replaced-width">
<div style="position: absolute">Original text</div>
<div style="width: 200vw; height: 10px"></div>
<script>
// Scroll the viewport.
window.scrollTo(window.innerWidth * 2, 0);
// Now force relayout of the abs pos div.
document.querySelector("div").textContent = "Modified text";
</script>
|