blob: 4e24dfc2d942fea1759359ab12359ca53bf62ce6 [file] [log] [blame]
[email protected]b4a02df2012-08-24 16:39:431<!DOCTYPE html>
2<html>
3<head>
4<style>
5::-webkit-scrollbar {
6 width: 16px;
7 height: 16px;
8}
9
10::-webkit-scrollbar-track
11{
12 background-color: #E3E3E3;
13}
14
15::-webkit-scrollbar-thumb
16{
17 background: black;
18}
19
20.scroll-row {
21 display: table-row;
22}
23
24.scroll-cell {
25 display: table-cell;
26 overflow: scroll;
27 width: 50px;
28 height: 50px;
29}
30
31.overflowing {
32 width: 200px;
33 height: 200px;
34}
35</style>
[email protected]b4a02df2012-08-24 16:39:4336</head>
37<body>
38<!--
[email protected]c0792f452015-01-27 22:04:0139 Bug 93903: Crash in LayoutTableCell::borderTop() due to custom scrollbars after r124168
[email protected]21ba6d272013-03-29 20:12:1640 This test has PASSED if there are 2 grey custom scrollbars and each block is 216x216px.
[email protected]b4a02df2012-08-24 16:39:4341-->
42<div class="scroll-cell"><div class="overflowing"></div></div>
43<div class="scroll-row"><div class="scroll-cell"><div class="overflowing"></div></div></div>
44</body>
45</html>