OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <style> | |
3 ::-webkit-scrollbar { height: 15px; width: 15px; } | |
4 ::-webkit-scrollbar:disabled { display: none; } | |
5 </style> | |
6 | |
7 This test verifies that layout runs correctly when custom scrollbar styles produ ce | |
8 different thickness for the enabled and disabled states, and are inherited by an iframe. | |
9 <br><br> | |
10 The test passes if it does not crash. | |
11 | |
12 <iframe width=800 height=600 srcdoc=""></iframe> | |
13 <script> | |
14 if (window.testRunner) { | |
15 testRunner.dumpAsText(); | |
16 } | |
17 </script> | |
OLD | NEW |