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-markers-inside-select-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<link rel="help" href="crbug.com/394980089">
<style>
#scroller {
overflow: scroll;
scroll-marker-group: after;
}
#scroller div::scroll-marker {
content: counter(test);
}
</style>
<select>
<div id="scroller">
<div></div>
</div>
</select>