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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/forms/select/menulist-appearance-basic.html

Issue 1931273003: Fix arrow placement on menulist with padding (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed RTL and added tests Created 4 years, 7 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 <body> 2 <body>
3 <style> 3 <style>
4 select { 4 select {
5 margin: 4px; 5 margin: 4px;
6 } 6 }
7 .wrapper { 7 .wrapper {
8 background: #dbb102; 8 background: #dbb102;
9 padding: 8px; 9 padding: 8px;
10 display: inline-block; 10 display: inline-block;
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 <script type="text/javascript"> 108 <script type="text/javascript">
109 for (var i = 0; i < 1234; ++i) { 109 for (var i = 0; i < 1234; ++i) {
110 document.writeln(" <option selected='selected'>Item " + (i + 1) + "</option >"); 110 document.writeln(" <option selected='selected'>Item " + (i + 1) + "</option >");
111 } 111 }
112 </script> 112 </script>
113 </select> 113 </select>
114 <br> 114 <br>
115 115
116 <!-- drop down arrow overlap test --> 116 <!-- drop down arrow overlap test -->
117 <select style="width:60px"><option>Month</option></select> 117 <select style="width:60px"><option>Month</option></select>
118 <br>
119 <!-- Test RTL menulist without and with border -->
120 <select style="direction:rtl;"><option>foo</option></select>
121 <select style="border: 3px solid lime; direction:rtl;"><option>foo</option></sel ect>
122 <select style="border: 8px solid lime; direction:rtl;"><option>foo</option></sel ect>
123 <select style="border-radius: 6px; direction:rtl;"><option>foo</option></select>
124 <br>
118 125
119 </body> 126 </body>
OLDNEW
« no previous file with comments | « third_party/WebKit/LayoutTests/TestExpectations ('k') | third_party/WebKit/Source/core/paint/ThemePainterDefault.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698