aboutsummaryrefslogblamecommitdiff
path: root/www/waterfox/files/patch-bug1444083
blob: 9163fe84acb66b121a9317d2a82fc982aca64d30 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
















                                                                         
Disable custom styling for <select> and <option> on Tier3 as well

diff --git modules/libpref/init/all.js modules/libpref/init/all.js
index 322d009da739..06e2fd7f664a 100644
--- modules/libpref/init/all.js
+++ modules/libpref/init/all.js
@@ -1359,8 +1359,8 @@ pref("dom.forms.autocomplete.formautofill", false);
 // Enable search in <select> dropdowns (more than 40 options)
 pref("dom.forms.selectSearch", false);
 // Allow for webpages to provide custom styling for <select>
-// popups. Disabled on Linux due to bug 1338283.
-#ifdef XP_LINUX
+// popups. Disabled on GTK due to bug 1338283.
+#ifdef MOZ_WIDGET_GTK
 pref("dom.forms.select.customstyling", false);
 #else
 pref("dom.forms.select.customstyling", true);