mirror of
https://github.com/servo/servo.git
synced 2025-08-05 13:40:08 +01:00
style: Rename AlignJustifySelf to SelfAlignment.
This matches the spec term and, again, the two properties will have different grammars soon. MozReview-Commit-ID: 8f8JXj2NnCi
This commit is contained in:
parent
d4a44de928
commit
711ea51d7b
6 changed files with 17 additions and 17 deletions
|
@ -240,13 +240,13 @@ impl Parse for ContentDistribution {
|
|||
/// <https://drafts.csswg.org/css-align/#self-alignment>
|
||||
#[cfg_attr(feature = "gecko", derive(MallocSizeOf))]
|
||||
#[derive(Clone, Copy, Debug, Eq, PartialEq, ToComputedValue, ToCss)]
|
||||
pub struct AlignJustifySelf(pub AlignFlags);
|
||||
pub struct SelfAlignment(pub AlignFlags);
|
||||
|
||||
impl AlignJustifySelf {
|
||||
impl SelfAlignment {
|
||||
/// The initial value 'auto'
|
||||
#[inline]
|
||||
pub fn auto() -> Self {
|
||||
AlignJustifySelf(AlignFlags::AUTO)
|
||||
SelfAlignment(AlignFlags::AUTO)
|
||||
}
|
||||
|
||||
/// Whether this value has extra flags.
|
||||
|
@ -257,16 +257,16 @@ impl AlignJustifySelf {
|
|||
}
|
||||
|
||||
|
||||
impl Parse for AlignJustifySelf {
|
||||
impl Parse for SelfAlignment {
|
||||
// auto | normal | stretch | <baseline-position> |
|
||||
// [ <overflow-position>? && <self-position> ]
|
||||
fn parse<'i, 't>(_: &ParserContext, input: &mut Parser<'i, 't>) -> Result<Self, ParseError<'i>> {
|
||||
// auto | normal | stretch | <baseline-position>
|
||||
if let Ok(value) = input.try(parse_auto_normal_stretch_baseline) {
|
||||
return Ok(AlignJustifySelf(value))
|
||||
return Ok(SelfAlignment(value))
|
||||
}
|
||||
// [ <overflow-position>? && <self-position> ]
|
||||
Ok(AlignJustifySelf(parse_overflow_self_position(input)?))
|
||||
Ok(SelfAlignment(parse_overflow_self_position(input)?))
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue