summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-scrollbars/scrollbar-color-012.html
blob: 974c6012b20d636d9b694305d4f7eb6ebc9190a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!doctype html>
<html>
<title>scrollbar-color with transparent colors works</title>
<link rel="author" title="Luke Warlow" href="mailto:luke@warlow.dev" />
<link rel="match" href="scrollbar-color-012-ref.html" />
<link rel="help" href="https://drafts.csswg.org/css-scrollbars" />
<style>
  html {scrollbar-color: transparent transparent;}
  body {height: 200vh}
  .container {
    overflow: auto;
    height: 200px;
    width: 200px;
    background-color: red;
  }

  .content {
    height: 300px;
    width: 300px;
  }
</style>
<div class="container">
  <div class="content"></div>
</div>