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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/forms/select-popup/popup-menu-size.html

Issue 1591613002: Move tests about 'New SELECT Popup' to fast/forms/select-popup, and disable them on OSX and Android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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 <script src="../../../resources/js-test.js"></script> 2 <script src="../../../resources/js-test.js"></script>
3 <script src="../resources/picker-common.js"></script> 3 <script src="../resources/picker-common.js"></script>
4 <style> 4 <style>
5 #select1 { 5 #select1 {
6 -webkit-appearance: none; 6 -webkit-appearance: none;
7 width: 100px; 7 width: 100px;
8 padding: 1px 30px 1px 6px; 8 padding: 1px 30px 1px 6px;
9 } 9 }
10 </style> 10 </style>
(...skipping 27 matching lines...) Expand all
38 finishJSTest(); 38 finishJSTest();
39 } 39 }
40 40
41 var select1 = document.getElementById('select1'); 41 var select1 = document.getElementById('select1');
42 42
43 openPicker(select1, function() { 43 openPicker(select1, function() {
44 shouldBe('popupWindow.innerWidth', '100'); 44 shouldBe('popupWindow.innerWidth', '100');
45 finishJSTest(); 45 finishJSTest();
46 }, openPickerErrorCallback); 46 }, openPickerErrorCallback);
47 </script> 47 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698