Stop using int and uint in style.

This commit is contained in:
Ms2ger 2015-04-05 19:13:01 +02:00
parent f22d920b4d
commit 9aa9a3b8fd
4 changed files with 9 additions and 10 deletions

View file

@ -38,7 +38,7 @@ pub struct Stylist {
element_map: PerPseudoElementSelectorMap,
before_map: PerPseudoElementSelectorMap,
after_map: PerPseudoElementSelectorMap,
rules_source_order: uint,
rules_source_order: usize,
}
impl Stylist {
@ -52,7 +52,7 @@ impl Stylist {
element_map: PerPseudoElementSelectorMap::new(),
before_map: PerPseudoElementSelectorMap::new(),
after_map: PerPseudoElementSelectorMap::new(),
rules_source_order: 0u,
rules_source_order: 0,
};
// FIXME: Add iso-8859-9.css when the documents encoding is ISO-8859-8.
// FIXME: presentational-hints.css should be at author origin with zero specificity.