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/root-element-layout-parent-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Overflow Test: root element with ::scroll-marker-group and ::scroll-buttons() doesn't crasah</title>
<style>
html {
overflow: auto;
scroll-marker-group: before;
}
html::scroll-marker-group {
width: 100px;
height: 100px;
}
html::scroll-button(left) {
content: "";
width: 100px;
height: 100px;
}
</style>