Status: FAIL | Duration: 7ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-scrollbars/scrollbar-color-010.html
<!doctype html> <html> <title>CSS Scrollbars: scrollbar-color on root correctly interacts with ::-webkit-scrollbar-corner on body</title> <link rel="author" title="Luke Warlow" href="mailto:luke@warlow.dev" /> <link rel="match" href="scrollbar-color-010-ref.html" /> <link rel="mismatch" href="scrollbar-color-010-mis-ref.html" /> <link rel="help" href="https://drafts.csswg.org/css-scrollbars-1/#color-compat" /> <style> :root { scrollbar-color: yellow blue; } body { overflow: scroll; } body::-webkit-scrollbar-corner { background-color: purple; } </style>
/css/css-scrollbars/scrollbar-color-010-ref.html
<!doctype html> <html> <style> :root { scrollbar-color: yellow blue; } body { overflow: scroll; } </style>