Skip to content

Commit

Permalink
Support start and end values for align- and justify-content properties
Browse files Browse the repository at this point in the history
  • Loading branch information
nicoburns committed Mar 25, 2024
1 parent a9de1cf commit 11a544e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions style/properties/longhands/position.mako.rs
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ ${helpers.single_keyword(
// FIXME: Update Servo to support the same Syntax as Gecko.
${helpers.single_keyword(
"justify-content",
"flex-start stretch flex-end center space-between space-around space-evenly",
"start flex-start stretch end flex-end center space-between space-around space-evenly",
engines="servo",
servo_pref="layout.flexbox.enabled",
extra_prefixes="webkit",
Expand Down Expand Up @@ -140,7 +140,7 @@ ${helpers.single_keyword(
// FIXME: Update Servo to support the same Syntax as Gecko.
${helpers.single_keyword(
"align-content",
"stretch flex-start flex-end center space-between space-around space-evenly",
"stretch start flex-start end flex-end center space-between space-around space-evenly",
engines="servo",
servo_pref="layout.flexbox.enabled",
extra_prefixes="webkit",
Expand Down

0 comments on commit 11a544e

Please sign in to comment.