summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-scrollbars/scrollbar-color-011.html
blob: 3df5f843e7f4db563c0c8a0b94a09fbc1bb5ff0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!doctype html>
<html>
<title>CSS Scrollbars: scrollbar-color with current color works correctly</title>
<link rel="author" title="Luke Warlow" href="mailto:luke@warlow.dev" />
<link rel="match" href="scrollbar-color-011-ref.html" />
<link rel="mismatch" href="scrollbar-color-011-mis-ref.html" />
<link rel="help" href="https://drafts.csswg.org/css-scrollbars-1/" />
<style>
  :root {
    scrollbar-color: currentColor currentColor;
    color: blue;
  }

  body {
    overflow: scroll;
  }
</style>