diff --git a/Cargo.lock b/Cargo.lock index 8192eedc00b..02cdc75b2e2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3435,7 +3435,7 @@ dependencies = [ [[package]] name = "webrender" version = "0.48.0" -source = "git+https://github.com/servo/webrender#80453c8168a176342801fcbabdcf06a601c07c4d" +source = "git+https://github.com/servo/webrender#b83c200c657f6b6fb17d09f329ba77803420b46a" dependencies = [ "app_units 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "bincode 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3464,7 +3464,7 @@ dependencies = [ [[package]] name = "webrender_api" version = "0.48.0" -source = "git+https://github.com/servo/webrender#80453c8168a176342801fcbabdcf06a601c07c4d" +source = "git+https://github.com/servo/webrender#b83c200c657f6b6fb17d09f329ba77803420b46a" dependencies = [ "app_units 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "bincode 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/components/layout/display_list_builder.rs b/components/layout/display_list_builder.rs index f527d18f5ec..d993170fb08 100644 --- a/components/layout/display_list_builder.rs +++ b/components/layout/display_list_builder.rs @@ -2123,7 +2123,7 @@ impl FragmentDisplayListBuilding for Fragment { // to back). // Shadows - for shadow in text_shadows.iter() { + for shadow in text_shadows.iter().rev() { state.add_display_item(DisplayItem::PushTextShadow(box PushTextShadowDisplayItem { base: base.clone(), blur_radius: shadow.blur,