summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/forms/select/listbox-overlay-scrollbar-expected.html
blob: b30d80fa6bdda084d59ca78085162a0cd6544068 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html>
<head>
<style>
html, body {
    margin: 0;
    padding: 0;
}
.container {
    width: 100px;
    height: 100px;
    background-color: lime;
    position: relative;
    display: block;
    font-family: "Arial";
    font-size : 12pt;
}
.scrollbar {
    background-color: #808080;
    position: absolute;
}
.vertical {
    width: 3px;
    height: 92px;
}
</style>
<script>
</script>
</head>
<body>
<p>You should see 2 green boxes with overlay scrollbar. The second box
should have a scrollbar on the left.</p>

<div class="container">
<option>foo1</option>
<option>foo2</option>
<option>foo3</option>
<option>foo4</option>
<option>foo5</option>
<div class="scrollbar vertical" style="right: 4px; top: 4px;"></div>
</div>
<div dir="rtl" class="container">
<option>foo1</option>
<option>foo2</option>
<option>foo3</option>
<option>foo4</option>
<option>foo5</option>
<div class="scrollbar vertical" style="left: 4px; top: 4px;"></div>
</div>
</body>
</html>