style: Simplify ::-moz-fieldset-content special-casing.

The style adjuster knows about the pseudo, so there's no reason to thread that
info down.

There are more simplifications that can be done in followups, cleaning a bit the
cascade flags too, those will come later.
This commit is contained in:
Emilio Cobos Álvarez 2017-12-30 22:06:48 +01:00
parent 446536b9c3
commit 563da3a19c
No known key found for this signature in database
GPG key ID: 056B727BB9C1027C
3 changed files with 7 additions and 16 deletions

View file

@ -3084,9 +3084,6 @@ bitflags! {
/// content.
const PROHIBIT_DISPLAY_CONTENTS = 1 << 4;
/// Whether we're styling the ::-moz-fieldset-content anonymous box.
const IS_FIELDSET_CONTENT = 1 << 5;
/// Whether we're computing the style of a link, either visited or
/// unvisited.
const IS_LINK = 1 << 6;