mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
Stop using int and uint in style.
This commit is contained in:
parent
f22d920b4d
commit
9aa9a3b8fd
4 changed files with 9 additions and 10 deletions
|
@ -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 document’s encoding is ISO-8859-8.
|
||||
// FIXME: presentational-hints.css should be at author origin with zero specificity.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue