style: While at it use some better names for some bits

Differential Revision: https://phabricator.services.mozilla.com/D148538
This commit is contained in:
Emilio Cobos Álvarez 2022-06-07 23:09:53 +00:00 committed by Martin Robinson
parent 6c3f92cb85
commit 7f81cd4f7c
2 changed files with 6 additions and 6 deletions

View file

@ -67,10 +67,10 @@ bitflags! {
const VALID = 1 << 10;
/// <https://html.spec.whatwg.org/multipage/#selector-invalid>
const INVALID = 1 << 11;
/// Non-standard: https://developer.mozilla.org/en-US/docs/Web/CSS/:-moz-ui-valid
const MOZ_UI_VALID = 1 << 12;
/// Non-standard: https://developer.mozilla.org/en-US/docs/Web/CSS/:-moz-ui-invalid
const MOZ_UI_INVALID = 1 << 13;
/// <https://drafts.csswg.org/selectors-4/#user-valid-pseudo>
const USER_VALID = 1 << 12;
/// <https://drafts.csswg.org/selectors-4/#user-invalid-pseudo>
const USER_INVALID = 1 << 13;
/// Non-standard: https://developer.mozilla.org/en-US/docs/Web/CSS/:-moz-broken
const BROKEN = 1 << 14;
/// Non-standard: https://developer.mozilla.org/en-US/docs/Web/CSS/:-moz-loading