OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <style> | 4 <style> |
5 ::-webkit-scrollbar { | 5 ::-webkit-scrollbar { |
6 width: 16px; | 6 width: 16px; |
7 height: 16px; | 7 height: 16px; |
8 } | 8 } |
9 | 9 |
10 ::-webkit-scrollbar-track | 10 ::-webkit-scrollbar-track |
(...skipping 30 matching lines...) Expand all Loading... |
41 <body> | 41 <body> |
42 <!-- | 42 <!-- |
43 Bug 93903: Crash in RenderTableCell::borderTop() due to custom scrollbars af
ter r124168 | 43 Bug 93903: Crash in RenderTableCell::borderTop() due to custom scrollbars af
ter r124168 |
44 This test has PASSED if there are 2 grey custom scrollbars with a black thum
b on each div below. | 44 This test has PASSED if there are 2 grey custom scrollbars with a black thum
b on each div below. |
45 Note that currently the right scrollbar is missing due to https://bugs.webki
t.org/show_bug.cgi?id=94054 | 45 Note that currently the right scrollbar is missing due to https://bugs.webki
t.org/show_bug.cgi?id=94054 |
46 --> | 46 --> |
47 <div class="scroll-cell"><div class="overflowing"></div></div> | 47 <div class="scroll-cell"><div class="overflowing"></div></div> |
48 <div class="scroll-row"><div class="scroll-cell"><div class="overflowing"></div>
</div></div> | 48 <div class="scroll-row"><div class="scroll-cell"><div class="overflowing"></div>
</div></div> |
49 </body> | 49 </body> |
50 </html> | 50 </html> |
OLD | NEW |