mirror of
https://github.com/servo/servo.git
synced 2025-10-02 17:49:16 +01:00
Upgrade Stylo to 2025-10-01 (#39612)
This continues #39150 Changelog: - Upstream:fd700321cc...b98470a5cb
- Servo fixups:1040a20611...4ba7bdb404
Stylo tracking issue: https://github.com/servo/stylo/issues/247 --------- Signed-off-by: Oriol Brufau <obrufau@igalia.com>
This commit is contained in:
parent
8d3db5c8f2
commit
df9902e4d0
6 changed files with 35 additions and 40 deletions
|
@ -28,7 +28,6 @@ embedder_traits = { workspace = true }
|
|||
euclid = { workspace = true }
|
||||
fonts = { path = "../fonts" }
|
||||
fonts_traits = { workspace = true }
|
||||
fxhash = { workspace = true }
|
||||
html5ever = { workspace = true }
|
||||
icu_locid = { workspace = true }
|
||||
icu_segmenter = { workspace = true }
|
||||
|
|
|
@ -1433,7 +1433,7 @@ struct RegisteredPainterImpl {
|
|||
painter: Box<dyn Painter>,
|
||||
name: Atom,
|
||||
// FIXME: Should be a PrecomputedHashMap.
|
||||
properties: fxhash::FxHashMap<Atom, PropertyId>,
|
||||
properties: FxHashMap<Atom, PropertyId>,
|
||||
}
|
||||
|
||||
impl SpeculativePainter for RegisteredPainterImpl {
|
||||
|
@ -1448,7 +1448,7 @@ impl SpeculativePainter for RegisteredPainterImpl {
|
|||
}
|
||||
|
||||
impl RegisteredSpeculativePainter for RegisteredPainterImpl {
|
||||
fn properties(&self) -> &fxhash::FxHashMap<Atom, PropertyId> {
|
||||
fn properties(&self) -> &FxHashMap<Atom, PropertyId> {
|
||||
&self.properties
|
||||
}
|
||||
fn name(&self) -> Atom {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue