Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <style> | |
| 3 ::-webkit-scrollbar { | |
| 4 height: 1px; | |
| 5 width: 1px | |
| 6 } | |
| 7 ::-webkit-scrollbar-thumb { | |
| 8 background: rgba(255,0,0,0.8); | |
|
skobes
2014/11/07 17:54:41
Fix indentation.
MuVen
2014/11/07 18:31:19
Done.
| |
| 9 } | |
| 10 html { | |
| 11 overflow-y: scroll | |
| 12 } | |
| 13 </style> | |
| 14 <script> | |
| 15 if (window.testRunner) | |
| 16 testRunner.dumpAsText(); | |
| 17 eventSender.setPageZoomFactor(5); | |
| 18 </script> | |
| 19 <div> | |
| 20 Custom-Scrollbar needs layout when scrollbar thickness changed. | |
| 21 <span>The test passed if chrome did not crash.</span> | |
| 22 </div> | |
| 23 <div style="width:600px"></div> | |
| OLD | NEW |