From 4bc9bc11e142507291d26cd31989b3637bdce490 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Sun, 11 Nov 2018 18:05:49 +0100 Subject: [PATCH] style: Remove user-select: -moz-all. It's an attempt of an alias to `all`, except it doesn't get handled in all places. Seems unused both in comm-central and mozilla-central, and all external usage I could find is followed by -webkit-user-select: all. Differential Revision: https://phabricator.services.mozilla.com/D11582 --- components/style/values/specified/ui.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/components/style/values/specified/ui.rs b/components/style/values/specified/ui.rs index 37dd4ebc9f2..6dbf910a655 100644 --- a/components/style/values/specified/ui.rs +++ b/components/style/values/specified/ui.rs @@ -163,11 +163,8 @@ pub enum UserSelect { Text, #[parse(aliases = "-moz-none")] None, - All, /// Force selection of all children, unless an ancestor has `none` set. - /// - /// See bug 48096. - MozAll, + All, /// Like `text`, except that it won't get overridden by ancestors having /// `all`. MozText,