forked from web-platform-tests/wpt
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathscrollbar-color-008.html
More file actions
36 lines (33 loc) · 898 Bytes
/
scrollbar-color-008.html
File metadata and controls
36 lines (33 loc) · 898 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!doctype html>
<html>
<title>CSS Scrollbars: scrollbar-color on body correctly interacts with ::-webkit-scrollbar-corner on container</title>
<link rel="author" title="Luke Warlow" href="mailto:[email protected]" />
<link rel="match" href="scrollbar-color-008-ref.html" />
<link rel="mismatch" href="scrollbar-color-008-mis-ref.html" />
<link rel="help" href="https://drafts.csswg.org/css-scrollbars-1/#color-compat" />
<style>
body {
scrollbar-color: yellow blue;
}
.container {
scrollbar-gutter: stable;
overflow: auto;
height: 200px;
min-width: 200px;
margin: 1px;
padding: 0px;
border: none;
background: deepskyblue;
}
.container::-webkit-scrollbar-corner {
background-color: purple;
}
.content {
height: 300px;
width: 300px;
background: red;
}
</style>
<div id="one" class="container">
<div class="content"></div>
</div>