Upgrade Stylo to 2025-09-02 (#39150)

This continues #38429

Changelog:
- Upstream:
ec21cec41c...fd700321cc
- Servo fixups:
30f8960428...64d8521f1b

Stylo tracking issue: https://github.com/servo/stylo/issues/236

---------

Signed-off-by: Oriol Brufau <obrufau@igalia.com>
This commit is contained in:
Oriol Brufau 2025-09-04 23:28:24 +02:00 committed by GitHub
parent 40ced5bb61
commit 589a750cac
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 35 additions and 68 deletions

View file

@ -468,7 +468,13 @@ fn shorthand_to_css_string(
let mut dest = String::new();
for longhand in id.longhands() {
block.push(
style.computed_or_resolved_declaration(longhand, Some(&Context { style })),
style.computed_or_resolved_declaration(
longhand,
Some(&Context {
style,
for_property: longhand.into(),
}),
),
Importance::Normal,
);
}