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
This commit is contained in:
Emilio Cobos Álvarez 2018-11-11 18:05:49 +01:00
parent 0c8b1a9004
commit 4bc9bc11e1
No known key found for this signature in database
GPG key ID: 056B727BB9C1027C

View file

@ -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,