[Release] Webkit-EFL Ver. 2.0_beta_118996_0.6.24
[framework/web/webkit-efl.git] / LayoutTests / scrollbars / scrollbar-orientation.html
1 <head>
2 <style>
3 div::-webkit-scrollbar {
4   width:17px;
5   height:17px;
6 }
7
8 div::-webkit-scrollbar-button {
9   display:block;
10   width: 17px;
11   height: 17px;
12 }
13
14 div::-webkit-scrollbar-button:vertical {
15   background-color:lightblue;
16   border:2px solid black;
17 }
18
19 div::-webkit-scrollbar-button:horizontal {
20   background-color:#208020;
21   border:2px solid black;
22 }
23
24 div::-webkit-scrollbar-thumb {
25   min-width:20px;
26   min-height:20px;
27   background-color: navy;
28   border:2px solid #cccccc;
29 }
30
31 div::-webkit-scrollbar-thumb:horizontal {
32   background-color: #004000;
33 }
34
35 div::-webkit-scrollbar-button:disabled {
36   display:none
37 }
38
39 div::-webkit-scrollbar-track {
40   background-color: #2060a0;
41 }
42
43 div::-webkit-scrollbar-track:horizontal {
44   background-color: #40a040;
45 }
46 </style>
47 </head>
48 <body>
49 <div style="width:200px; height:200px; overflow-y:scroll; overflow-x:scroll">
50 Hello<br>
51 Hello<br>Hello<br>Hello<br>Hello<br>Hello<br>Hello<br>Hello<br>
52 Hello<br>Hello<br>Hello<br>Hello<br>
53 Hello<br>Hello<br>Hello<br>Hello<br>
54 <span style="white-space:nowrap">Hello world this is a long string and will not wrap.</span>
55 Hello<br>Hello<br>Hello<br>Hello<br>
56 Hello<br>Hello<br>Hello<br>Hello<br>Hello<br>Hello<br>
57 Hello<br>Hello<br>Hello<br>Hello<br>
58 Hello<br>Hello<br>Hello<br>Hello<br>Hello<br>Hello<br>
59 Hello<br>Hello<br>Hello<br>Hello<br>
60 Hello<br>Hello<br>Hello<br>
61 </div>