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

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

Issue 588013002: Remove Overlay Scrollbar if not scrollable along the axis (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
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
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 } 15 }
16 </style> 16 </style>
17 <script> 17 <script>
18 if (window.internals) { 18 if (window.internals) {
19 testRunner.dumpAsTextWithPixelResults(); 19 testRunner.dumpAsTextWithPixelResults();
20 internals.settings.setOverlayScrollbarsEnabled(true); 20 internals.settings.setOverlayScrollbarsEnabled(true);
21 internals.settings.setMockScrollbarsEnabled(true); 21 internals.settings.setMockScrollbarsEnabled(true);
22 } 22 }
23 </script> 23 </script>
24 </head> 24 </head>
25 <body> 25 <body>
26 <p>You should see 2 green boxes with overlay scrollbar. The second box 26 <p>You should see 2 green boxes with-out overlay scrollbar.</p>
27 should have a scrollbar on the left.</p>
28 27
29 <div> 28 <div>
30 <select multiple class="sel"></select> 29 <select multiple class="sel"></select>
31 </div> 30 </div>
32 <div> 31 <div>
33 <select multiple dir="rtl" class="sel"></select> 32 <select multiple dir="rtl" class="sel"></select>
34 </div> 33 </div>
35 </body> 34 </body>
36 </html> 35 </html>
OLDNEW
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/fast/forms/select/listbox-nooverlay-scrollbar-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698