| OLD | NEW |
| 1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
| 2 <style> | 2 <style> |
| 3 ::-webkit-scrollbar { | 3 ::-webkit-scrollbar { |
| 4 width: 12px; | 4 width: 12px; |
| 5 height: 12px; | 5 height: 12px; |
| 6 } | 6 } |
| 7 ::-webkit-scrollbar-track { | 7 ::-webkit-scrollbar-track { |
| 8 -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); | 8 -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); |
| 9 -webkit-border-radius: 10px; | 9 -webkit-border-radius: 10px; |
| 10 border-radius: 10px; | 10 border-radius: 10px; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 width: 100px; | 26 width: 100px; |
| 27 height: 100px; | 27 height: 100px; |
| 28 overflow: scroll; | 28 overflow: scroll; |
| 29 } | 29 } |
| 30 </style> | 30 </style> |
| 31 <body> | 31 <body> |
| 32 <iframe src="resources/scrollable-iframe-customscrollbar-expected.html"></iframe
> | 32 <iframe src="resources/scrollable-iframe-customscrollbar-expected.html"></iframe
> |
| 33 <div><p style="width:200px;height:200px"></p></div> | 33 <div><p style="width:200px;height:200px"></p></div> |
| 34 <div><p style="width:200px;height:200px"></p></div> | 34 <div><p style="width:200px;height:200px"></p></div> |
| 35 </body> | 35 </body> |
| OLD | NEW |