Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(226)

Side by Side Diff: LayoutTests/fast/forms/select/listbox-overlay-scrollbar.html

Issue 644983002: Revert of Remove Overlay Scrollbar if not scrollable along the axis (patchset #9 id:1140001 of http… (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <style> 4 <style>
5 html, body { 5 html, body {
6 margin: 0; 6 margin: 0;
7 padding: 0; 7 padding: 0;
8 } 8 }
9 .sel { 9 .sel {
10 border: 0; 10 border: 0;
11 width: 100px; 11 width: 100px;
12 height: 100px; 12 height: 100px;
13 background-color: lime; 13 background-color: lime;
14 display: block; 14 display: block;
15 font-family: "Arial";
16 font-size : 12pt;
17 } 15 }
18 </style> 16 </style>
19 <script> 17 <script>
20 if (window.internals) { 18 if (window.internals) {
21 testRunner.dumpAsTextWithPixelResults(); 19 testRunner.dumpAsTextWithPixelResults();
22 internals.settings.setOverlayScrollbarsEnabled(true); 20 internals.settings.setOverlayScrollbarsEnabled(true);
23 internals.settings.setMockScrollbarsEnabled(true); 21 internals.settings.setMockScrollbarsEnabled(true);
24 } 22 }
25 </script> 23 </script>
26 </head> 24 </head>
27 <body> 25 <body>
28 <p>You should see 2 green boxes with overlay scrollbar. The second box 26 <p>You should see 2 green boxes with overlay scrollbar. The second box
29 should have a scrollbar on the left.</p> 27 should have a scrollbar on the left.</p>
30 28
31 <div> 29 <div>
32 <select multiple class="sel" size="5"> 30 <select multiple class="sel"></select>
33 <option>foo1</option>
34 <option>foo2</option>
35 <option>foo3</option>
36 <option>foo4</option>
37 <option>foo5</option>
38 </select>
39 </div> 31 </div>
40 <div> 32 <div>
41 <select multiple dir="rtl" class="sel" size="5"> 33 <select multiple dir="rtl" class="sel"></select>
42 <option>foo1</option>
43 <option>foo2</option>
44 <option>foo3</option>
45 <option>foo4</option>
46 <option>foo5</option>
47 </select>
48 </div> 34 </div>
49 </body> 35 </body>
50 </html> 36 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698