[email protected] | b4a02df | 2012-08-24 16:39:43 | [diff] [blame] | 1 | <!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] | b4a02df | 2012-08-24 16:39:43 | [diff] [blame] | 36 | </head> |
37 | <body> | ||||
38 | <!-- | ||||
[email protected] | c0792f45 | 2015-01-27 22:04:01 | [diff] [blame] | 39 | Bug 93903: Crash in LayoutTableCell::borderTop() due to custom scrollbars after r124168 |
[email protected] | 21ba6d27 | 2013-03-29 20:12:16 | [diff] [blame] | 40 | This test has PASSED if there are 2 grey custom scrollbars and each block is 216x216px. |
[email protected] | b4a02df | 2012-08-24 16:39:43 | [diff] [blame] | 41 | --> |
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> |