stylo: Fix and ensure alignment of restyle hints. Test it on Travis.

Turns out eRestyle_LaterSiblings was not really matching, sigh...
This commit is contained in:
Emilio Cobos Álvarez 2016-08-03 00:36:45 -07:00
parent 6d67525172
commit 27b2bad256
No known key found for this signature in database
GPG key ID: 056B727BB9C1027C
5 changed files with 58 additions and 1 deletions

View file

@ -28,7 +28,7 @@ bitflags! {
// of a good reason for that.
const RESTYLE_DESCENDANTS = 0x02,
#[doc = "Rerun selector matching on all later siblings of the element and all of their descendants."]
const RESTYLE_LATER_SIBLINGS = 0x04,
const RESTYLE_LATER_SIBLINGS = 0x08,
}
}