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 src="resources/empty.html"></iframe> | |
Xianzhu
2015/08/17 16:17:05
Nit: Would srcdoc="" work (so that we can avoid an
skobes
2015/08/17 20:39:27
Done.
| |
13 <script> | |
14 if (window.testRunner) { | |
15 testRunner.dumpAsText(); | |
16 } | |
17 </script> | |
OLD | NEW |