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-marker-dynamic-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html class="reftest-wait">
<style>
#container {
columns: 1;
width: 500px;
overflow: auto;
scroll-marker-group: after;
}
#container::scroll-marker-group {
display: block;
}
#container::column::scroll-marker {
content: ' ';
}
</style>
<div id="container"></div>
<script>
document.body.offsetTop;
requestAnimationFrame(() => {
requestAnimationFrame(() => {
container.style.width = "501px";
document.documentElement.classList.remove("reftest-wait");
});
});
</script>
</html>