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-group-001.html - WPT Dashboard Interop Dashboard
<!doctype html>
<meta charset="utf-8">
<title>CSS Test: ::scroll-marker-group box creation</title>
<link rel="match" href="scroll-marker-group-001-ref.html">
<style>
div {
overflow: auto;
scroll-marker-group: before;
}
div::scroll-marker-group {
background: green;
display: flex;
height: 100px;
width: 100px;
}
</style>
<p>Test passes if there is a <strong>filled green rectangle</strong>.
<div></div>