mirror of
https://github.com/servo/servo.git
synced 2025-06-19 22:59:03 +01:00
* Implement support for `drop-shadow` * Clean up remnant from early attempts * Fix misleading comments on GenericSimpleShadow If Servo-specific `style` changes will need to be upstreamed anyway, I might as well fix a thing that had thrown me off! * Revert "Fix misleading comments on GenericSimpleShadow" This reverts commit cdc810b826ac082041adc212c24649ee3b86ca0a. * Clean up an import * Update test expectations * Fix missing expectation on Layout 2013
17 lines
542 B
Rust
17 lines
542 B
Rust
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
|
|
pub use self::builder::{
|
|
BorderPaintingMode, DisplayListBuildState, IndexableText, StackingContextCollectionFlags,
|
|
StackingContextCollectionState,
|
|
};
|
|
pub use self::conversions::{FilterToLayout, ToLayout};
|
|
|
|
mod background;
|
|
mod border;
|
|
mod builder;
|
|
pub(crate) mod conversions;
|
|
mod gradient;
|
|
pub mod items;
|
|
mod webrender_helpers;
|