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 17 matching lines...) Expand all Loading... |
28 height: 50px; | 28 height: 50px; |
29 } | 29 } |
30 | 30 |
31 .overflowing { | 31 .overflowing { |
32 width: 200px; | 32 width: 200px; |
33 height: 200px; | 33 height: 200px; |
34 } | 34 } |
35 </style> | 35 </style> |
36 <script> | 36 <script> |
37 if (window.testRunner) | 37 if (window.testRunner) |
38 testRunner.dumpAsText(true); | 38 testRunner.dumpAsTextWithPixelResults(); |
39 </script> | 39 </script> |
40 </head> | 40 </head> |
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 and each block is
216x216px. | 44 This test has PASSED if there are 2 grey custom scrollbars and each block is
216x216px. |
45 --> | 45 --> |
46 <div class="scroll-cell"><div class="overflowing"></div></div> | 46 <div class="scroll-cell"><div class="overflowing"></div></div> |
47 <div class="scroll-row"><div class="scroll-cell"><div class="overflowing"></div>
</div></div> | 47 <div class="scroll-row"><div class="scroll-cell"><div class="overflowing"></div>
</div></div> |
48 </body> | 48 </body> |
49 </html> | 49 </html> |
OLD | NEW |