blob: d68d4e5d3cba0353da274f9c75c558c0a8324092 (
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
52
53
54
55
56
57
58
59
|
<!DOCTYPE html>
<html>
<meta charset="utf-8">
<title>CSS Overflow: test scrollbar-gutter with vertical right to left content</title>
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-overflow-4/#scrollbar-gutter-property">
<link rel="match" href="scrollbar-gutter-vertical-rl-002-ref.html">
<style>
.line {
display: flex;
}
.container {
writing-mode: vertical-rl;
block-size: 200px;
inline-size: 200px;
margin: 10px;
background: deepskyblue;
resize: both;
}
.content {
inline-size: 100%;
block-size: 200%;
background: lightsalmon;
}
</style>
<div class="line">
<div class="container" style="overflow-x: auto; scrollbar-gutter: stable">
<div class="content"></div>
</div>
<div class="container" style="overflow-x: scroll; scrollbar-gutter: stable">
<div class="content"></div>
</div>
<div class="container" style="overflow-x: hidden; scrollbar-gutter: stable">
<div class="content"></div>
</div>
</div>
<div class="line">
<div class="container" style="overflow-x: auto; scrollbar-gutter: stable both-edges">
<div class="content"></div>
</div>
<div class="container" style="overflow-x: scroll; scrollbar-gutter: stable both-edges">
<div class="content"></div>
</div>
<div class="container" style="overflow-x: hidden; scrollbar-gutter: stable both-edges">
<div class="content"></div>
</div>
</div>
</html>
|