From e2545ee95d55966a189d474e06a8cf074ae997e9 Mon Sep 17 00:00:00 2001 From: Markus Stange Date: Tue, 27 Oct 2020 12:37:44 +0000 Subject: [PATCH] style: Use the -moz-default-appearance values "scrollbar-horizontal" and "scrollbar-vertical" on macOS and remove the now-unused value "scrollbar". Other platforms were already converted to scrollbar-horizontal and scrollbar-vertical in bug 1205643. Differential Revision: https://phabricator.services.mozilla.com/D94674 --- components/style/values/specified/box.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/components/style/values/specified/box.rs b/components/style/values/specified/box.rs index 82a2186a0de..ed81eba40e6 100644 --- a/components/style/values/specified/box.rs +++ b/components/style/values/specified/box.rs @@ -1640,9 +1640,6 @@ pub enum Appearance { /// The resizer itself. #[parse(condition = "ParserContext::in_ua_or_chrome_sheet")] Resizer, - /// A scrollbar. - #[parse(condition = "ParserContext::in_ua_or_chrome_sheet")] - Scrollbar, /// The scrollbar slider #[parse(condition = "ParserContext::in_ua_or_chrome_sheet")] ScrollbarHorizontal,