Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-scrollbars/scrollbar-color-009.html - WPT Dashboard Interop Dashboard
<!doctype html>
<html>
<title>CSS Scrollbars: scrollbar-color on root correctly interacts with ::-webkit-scrollbar-corner</title>
<link rel="author" title="Luke Warlow" href="mailto:luke@warlow.dev" />
<link rel="match" href="scrollbar-color-009-ref.html" />
<link rel="mismatch" href="scrollbar-color-009-mis-ref.html" />
<style>
:root {
scrollbar-color: yellow blue;
}
body {
overflow: scroll;
}
::-webkit-scrollbar-corner {
background-color: purple;
}
</style>