Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Signed-off-by: Oriol Brufau <obrufau@igalia.com>
  • Loading branch information
Loirooriol committed Mar 3, 2025
1 parent 71cce91 commit 0190fff
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion style/values/specified/text.rs
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,14 @@ impl ToCss for TextOverflow {
ToResolvedValue,
ToShmem,
)]
#[css(bitflags(single = "none,spelling-error,grammar-error", mixed = "underline,overline,line-through,blink"))]
#[cfg_attr(feature = "gecko", css(bitflags(
single = "none,spelling-error,grammar-error",
mixed = "underline,overline,line-through,blink",
)))]
#[cfg_attr(not(feature = "gecko"), css(bitflags(
single = "none",
mixed = "underline,overline,line-through,blink",
)))]
#[repr(C)]
/// Specified keyword values for the text-decoration-line property.
pub struct TextDecorationLine(u8);
Expand Down

0 comments on commit 0190fff

Please sign in to comment.