summaryrefslogtreecommitdiffstats
path: root/widget/tests/browser/helper_scrollbar_colors.html
blob: e6001906e26c1daf2881f315c50758da6ade4a2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<meta charset="UTF-8">
<title>Test for scrollbar-*-color properties</title>
<style>
  .outer {
    width: 100px;
    height: 100px;
    background: yellow;
    overflow: scroll;
  }
  .inner {
    width: 200px;
    height: 200px;
  }
</style>
<style id="style"></style>
<div class="outer">
  <div class="inner">
  </div>
</div>
</html>