style: Renumber CascadeFlags bits.

This commit is contained in:
Emilio Cobos Álvarez 2017-12-30 22:38:45 +01:00
parent a747de1814
commit bc2ef519ca
No known key found for this signature in database
GPG key ID: 056B727BB9C1027C

View file

@ -3081,11 +3081,11 @@ bitflags! {
/// Whether we're computing the style of a link, either visited or
/// unvisited.
const IS_LINK = 1 << 6;
const IS_LINK = 1 << 4;
/// Whether we're computing the style of a link element that happens to
/// be visited.
const IS_VISITED_LINK = 1 << 7;
const IS_VISITED_LINK = 1 << 5;
}
}