Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-overflow/scroll-target-group-inline-targets.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>CSS Overflow Test: dynamic setting of scroll-target-group with inline scroll targets</title>
<link rel="match" href="scroll-target-group-inline-targets-ref.html">
<style>
.stg {
scroll-target-group: auto;
a:target-current {
color: green;
}
}
#scroller {
height: 100px;
overflow: auto;
}
</style>
<div id="group">
<a href="#a">a</a>
<a href="#b">b</a>
</div>
<div id="scroller">
<a id="a">aa</a>
<div style="height: 200px;"></div>
<a id="b">bb</a>
<div style="height: 200px;"></div>
</div>
<script>
scroller.scrollTop = 200;
document.documentElement.offsetTop;
group.classList.add("stg");
</script>