mirror of
https://github.com/servo/servo.git
synced 2025-07-23 15:23:42 +01:00
style: Make border-spacing serialization consistent, and move it to precomputed_type.
This commit is contained in:
parent
f9c06d7932
commit
2ac1327e4b
21 changed files with 200 additions and 219 deletions
|
@ -474,8 +474,8 @@ pub fn specified_border_radius(
|
||||||
containing_size: Size2D<Au>)
|
containing_size: Size2D<Au>)
|
||||||
-> Size2D<Au>
|
-> Size2D<Au>
|
||||||
{
|
{
|
||||||
let w = radius.0.width.to_used_value(containing_size.width);
|
let w = radius.0.width().to_used_value(containing_size.width);
|
||||||
let h = radius.0.height.to_used_value(containing_size.height);
|
let h = radius.0.height().to_used_value(containing_size.height);
|
||||||
Size2D::new(w, h)
|
Size2D::new(w, h)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -29,7 +29,7 @@ use style::logical_geometry::LogicalSize;
|
||||||
use style::properties::ComputedValues;
|
use style::properties::ComputedValues;
|
||||||
use style::servo::restyle_damage::{REFLOW, REFLOW_OUT_OF_FLOW};
|
use style::servo::restyle_damage::{REFLOW, REFLOW_OUT_OF_FLOW};
|
||||||
use style::values::CSSFloat;
|
use style::values::CSSFloat;
|
||||||
use style::values::computed::{LengthOrPercentageOrAuto, NonNegativeLength};
|
use style::values::computed::LengthOrPercentageOrAuto;
|
||||||
use table_row::{self, CellIntrinsicInlineSize, CollapsedBorder, CollapsedBorderProvenance};
|
use table_row::{self, CellIntrinsicInlineSize, CollapsedBorder, CollapsedBorderProvenance};
|
||||||
use table_row::TableRowFlow;
|
use table_row::TableRowFlow;
|
||||||
use table_wrapper::TableLayout;
|
use table_wrapper::TableLayout;
|
||||||
|
@ -190,12 +190,7 @@ impl TableFlow {
|
||||||
let style = self.block_flow.fragment.style();
|
let style = self.block_flow.fragment.style();
|
||||||
match style.get_inheritedtable().border_collapse {
|
match style.get_inheritedtable().border_collapse {
|
||||||
border_collapse::T::separate => style.get_inheritedtable().border_spacing,
|
border_collapse::T::separate => style.get_inheritedtable().border_spacing,
|
||||||
border_collapse::T::collapse => {
|
border_collapse::T::collapse => border_spacing::T::zero(),
|
||||||
border_spacing::T {
|
|
||||||
horizontal: NonNegativeLength::zero(),
|
|
||||||
vertical: NonNegativeLength::zero(),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -204,7 +199,7 @@ impl TableFlow {
|
||||||
if num_columns == 0 {
|
if num_columns == 0 {
|
||||||
return Au(0);
|
return Au(0);
|
||||||
}
|
}
|
||||||
Au::from(self.spacing().horizontal) * (num_columns as i32 + 1)
|
self.spacing().horizontal() * (num_columns as i32 + 1)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -471,8 +466,8 @@ impl Flow for TableFlow {
|
||||||
|
|
||||||
fn assign_block_size(&mut self, _: &LayoutContext) {
|
fn assign_block_size(&mut self, _: &LayoutContext) {
|
||||||
debug!("assign_block_size: assigning block_size for table");
|
debug!("assign_block_size: assigning block_size for table");
|
||||||
let vertical_spacing = self.spacing().vertical.0;
|
let vertical_spacing = self.spacing().vertical();
|
||||||
self.block_flow.assign_block_size_for_table_like_flow(Au::from(vertical_spacing))
|
self.block_flow.assign_block_size_for_table_like_flow(vertical_spacing)
|
||||||
}
|
}
|
||||||
|
|
||||||
fn compute_stacking_relative_position(&mut self, layout_context: &LayoutContext) {
|
fn compute_stacking_relative_position(&mut self, layout_context: &LayoutContext) {
|
||||||
|
|
|
@ -27,7 +27,7 @@ use style::computed_values::{border_collapse, border_spacing, border_top_style};
|
||||||
use style::logical_geometry::{LogicalSize, PhysicalSide, WritingMode};
|
use style::logical_geometry::{LogicalSize, PhysicalSide, WritingMode};
|
||||||
use style::properties::ComputedValues;
|
use style::properties::ComputedValues;
|
||||||
use style::servo::restyle_damage::{REFLOW, REFLOW_OUT_OF_FLOW};
|
use style::servo::restyle_damage::{REFLOW, REFLOW_OUT_OF_FLOW};
|
||||||
use style::values::computed::{Color, LengthOrPercentageOrAuto, NonNegativeLength};
|
use style::values::computed::{Color, LengthOrPercentageOrAuto};
|
||||||
use table::{ColumnComputedInlineSize, ColumnIntrinsicInlineSize, InternalTable, VecExt};
|
use table::{ColumnComputedInlineSize, ColumnIntrinsicInlineSize, InternalTable, VecExt};
|
||||||
use table_cell::{CollapsedBordersForCell, TableCellFlow};
|
use table_cell::{CollapsedBordersForCell, TableCellFlow};
|
||||||
|
|
||||||
|
@ -94,10 +94,7 @@ impl TableRowFlow {
|
||||||
cell_intrinsic_inline_sizes: Vec::new(),
|
cell_intrinsic_inline_sizes: Vec::new(),
|
||||||
column_computed_inline_sizes: Vec::new(),
|
column_computed_inline_sizes: Vec::new(),
|
||||||
incoming_rowspan: Vec::new(),
|
incoming_rowspan: Vec::new(),
|
||||||
spacing: border_spacing::T {
|
spacing: border_spacing::T::zero(),
|
||||||
horizontal: NonNegativeLength::zero(),
|
|
||||||
vertical: NonNegativeLength::zero(),
|
|
||||||
},
|
|
||||||
table_writing_mode: writing_mode,
|
table_writing_mode: writing_mode,
|
||||||
preliminary_collapsed_borders: CollapsedBordersForRow::new(),
|
preliminary_collapsed_borders: CollapsedBordersForRow::new(),
|
||||||
final_collapsed_borders: CollapsedBordersForRow::new(),
|
final_collapsed_borders: CollapsedBordersForRow::new(),
|
||||||
|
@ -397,7 +394,7 @@ impl Flow for TableRowFlow {
|
||||||
None => break,
|
None => break,
|
||||||
};
|
};
|
||||||
column_computed_inline_size.size = column_computed_inline_size.size +
|
column_computed_inline_size.size = column_computed_inline_size.size +
|
||||||
extra_column_computed_inline_size.size + Au::from(self.spacing.horizontal);
|
extra_column_computed_inline_size.size + self.spacing.horizontal();
|
||||||
col += 1;
|
col += 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -828,7 +825,7 @@ fn set_inline_position_of_child_flow(
|
||||||
let column_inline_size = column_computed_inline_sizes[*column_index].size;
|
let column_inline_size = column_computed_inline_sizes[*column_index].size;
|
||||||
let border_inline_size = match *border_collapse_info {
|
let border_inline_size = match *border_collapse_info {
|
||||||
Some(_) => Au(0), // FIXME: Make collapsed borders account for colspan/rowspan.
|
Some(_) => Au(0), // FIXME: Make collapsed borders account for colspan/rowspan.
|
||||||
None => Au::from(border_spacing.horizontal),
|
None => border_spacing.horizontal(),
|
||||||
};
|
};
|
||||||
if reverse_column_order {
|
if reverse_column_order {
|
||||||
*inline_end_margin_edge += column_inline_size + border_inline_size;
|
*inline_end_margin_edge += column_inline_size + border_inline_size;
|
||||||
|
@ -883,9 +880,9 @@ fn set_inline_position_of_child_flow(
|
||||||
None => {
|
None => {
|
||||||
// Take spacing into account.
|
// Take spacing into account.
|
||||||
if reverse_column_order {
|
if reverse_column_order {
|
||||||
*inline_end_margin_edge += Au::from(border_spacing.horizontal);
|
*inline_end_margin_edge += border_spacing.horizontal();
|
||||||
} else {
|
} else {
|
||||||
*inline_start_margin_edge += Au::from(border_spacing.horizontal);
|
*inline_start_margin_edge += border_spacing.horizontal();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,7 +22,6 @@ use std::iter::{IntoIterator, Iterator, Peekable};
|
||||||
use style::computed_values::{border_collapse, border_spacing};
|
use style::computed_values::{border_collapse, border_spacing};
|
||||||
use style::logical_geometry::LogicalSize;
|
use style::logical_geometry::LogicalSize;
|
||||||
use style::properties::ComputedValues;
|
use style::properties::ComputedValues;
|
||||||
use style::values::computed::NonNegativeLength;
|
|
||||||
use table::{ColumnIntrinsicInlineSize, InternalTable, TableLikeFlow};
|
use table::{ColumnIntrinsicInlineSize, InternalTable, TableLikeFlow};
|
||||||
|
|
||||||
/// A table formatting context.
|
/// A table formatting context.
|
||||||
|
@ -56,10 +55,7 @@ impl TableRowGroupFlow {
|
||||||
TableRowGroupFlow {
|
TableRowGroupFlow {
|
||||||
block_flow: BlockFlow::from_fragment(fragment),
|
block_flow: BlockFlow::from_fragment(fragment),
|
||||||
column_intrinsic_inline_sizes: Vec::new(),
|
column_intrinsic_inline_sizes: Vec::new(),
|
||||||
spacing: border_spacing::T {
|
spacing: border_spacing::T::zero(),
|
||||||
horizontal: NonNegativeLength::zero(),
|
|
||||||
vertical: NonNegativeLength::zero(),
|
|
||||||
},
|
|
||||||
collapsed_inline_direction_border_widths_for_table: Vec::new(),
|
collapsed_inline_direction_border_widths_for_table: Vec::new(),
|
||||||
collapsed_block_direction_border_widths_for_table: Vec::new(),
|
collapsed_block_direction_border_widths_for_table: Vec::new(),
|
||||||
}
|
}
|
||||||
|
@ -163,7 +159,7 @@ impl Flow for TableRowGroupFlow {
|
||||||
|
|
||||||
fn assign_block_size(&mut self, _: &LayoutContext) {
|
fn assign_block_size(&mut self, _: &LayoutContext) {
|
||||||
debug!("assign_block_size: assigning block_size for table_rowgroup");
|
debug!("assign_block_size: assigning block_size for table_rowgroup");
|
||||||
self.block_flow.assign_block_size_for_table_like_flow(Au::from(self.spacing.vertical))
|
self.block_flow.assign_block_size_for_table_like_flow(self.spacing.vertical());
|
||||||
}
|
}
|
||||||
|
|
||||||
fn compute_stacking_relative_position(&mut self, layout_context: &LayoutContext) {
|
fn compute_stacking_relative_position(&mut self, layout_context: &LayoutContext) {
|
||||||
|
|
|
@ -581,10 +581,12 @@ impl LayoutElementHelpers for LayoutJS<Element> {
|
||||||
hints.push(from_declaration(
|
hints.push(from_declaration(
|
||||||
shared_lock,
|
shared_lock,
|
||||||
PropertyDeclaration::BorderSpacing(
|
PropertyDeclaration::BorderSpacing(
|
||||||
Box::new(border_spacing::SpecifiedValue {
|
Box::new(border_spacing::SpecifiedValue::new(
|
||||||
horizontal: width_value.into(),
|
width_value.clone().into(),
|
||||||
vertical: None,
|
width_value.into()
|
||||||
}))));
|
))
|
||||||
|
)
|
||||||
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -719,8 +719,8 @@ pub mod basic_shape {
|
||||||
/// Set this `BorderRadius` into a given `nsStyleCoord`.
|
/// Set this `BorderRadius` into a given `nsStyleCoord`.
|
||||||
pub fn set_corners(&self, other: &mut nsStyleCorners) {
|
pub fn set_corners(&self, other: &mut nsStyleCorners) {
|
||||||
let mut set_corner = |field: &BorderCornerRadius, index| {
|
let mut set_corner = |field: &BorderCornerRadius, index| {
|
||||||
field.0.width.to_gecko_style_coord(&mut other.data_at_mut(index));
|
field.0.width().to_gecko_style_coord(&mut other.data_at_mut(index));
|
||||||
field.0.height.to_gecko_style_coord(&mut other.data_at_mut(index + 1));
|
field.0.height().to_gecko_style_coord(&mut other.data_at_mut(index + 1));
|
||||||
};
|
};
|
||||||
set_corner(&self.top_left, 0);
|
set_corner(&self.top_left, 0);
|
||||||
set_corner(&self.top_right, 2);
|
set_corner(&self.top_right, 2);
|
||||||
|
|
|
@ -959,8 +959,8 @@ def set_gecko_property(ffi_name, expr):
|
||||||
<%def name="impl_corner_style_coord(ident, gecko_ffi_name, x_index, y_index, need_clone)">
|
<%def name="impl_corner_style_coord(ident, gecko_ffi_name, x_index, y_index, need_clone)">
|
||||||
#[allow(non_snake_case)]
|
#[allow(non_snake_case)]
|
||||||
pub fn set_${ident}(&mut self, v: longhands::${ident}::computed_value::T) {
|
pub fn set_${ident}(&mut self, v: longhands::${ident}::computed_value::T) {
|
||||||
v.0.width.to_gecko_style_coord(&mut self.gecko.${gecko_ffi_name}.data_at_mut(${x_index}));
|
v.0.width().to_gecko_style_coord(&mut self.gecko.${gecko_ffi_name}.data_at_mut(${x_index}));
|
||||||
v.0.height.to_gecko_style_coord(&mut self.gecko.${gecko_ffi_name}.data_at_mut(${y_index}));
|
v.0.height().to_gecko_style_coord(&mut self.gecko.${gecko_ffi_name}.data_at_mut(${y_index}));
|
||||||
}
|
}
|
||||||
#[allow(non_snake_case)]
|
#[allow(non_snake_case)]
|
||||||
pub fn copy_${ident}_from(&mut self, other: &Self) {
|
pub fn copy_${ident}_from(&mut self, other: &Self) {
|
||||||
|
@ -4605,8 +4605,8 @@ fn static_assert() {
|
||||||
skip_longhands="border-spacing">
|
skip_longhands="border-spacing">
|
||||||
|
|
||||||
pub fn set_border_spacing(&mut self, v: longhands::border_spacing::computed_value::T) {
|
pub fn set_border_spacing(&mut self, v: longhands::border_spacing::computed_value::T) {
|
||||||
self.gecko.mBorderSpacingCol = v.horizontal.0.to_i32_au();
|
self.gecko.mBorderSpacingCol = v.horizontal().0;
|
||||||
self.gecko.mBorderSpacingRow = v.vertical.0.to_i32_au();
|
self.gecko.mBorderSpacingRow = v.vertical().0;
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn copy_border_spacing_from(&mut self, other: &Self) {
|
pub fn copy_border_spacing_from(&mut self, other: &Self) {
|
||||||
|
@ -4619,10 +4619,10 @@ fn static_assert() {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn clone_border_spacing(&self) -> longhands::border_spacing::computed_value::T {
|
pub fn clone_border_spacing(&self) -> longhands::border_spacing::computed_value::T {
|
||||||
longhands::border_spacing::computed_value::T {
|
longhands::border_spacing::computed_value::T::new(
|
||||||
horizontal: Au(self.gecko.mBorderSpacingCol).into(),
|
Au(self.gecko.mBorderSpacingCol).into(),
|
||||||
vertical: Au(self.gecko.mBorderSpacingRow).into()
|
Au(self.gecko.mBorderSpacingRow).into()
|
||||||
}
|
)
|
||||||
}
|
}
|
||||||
</%self:impl_trait>
|
</%self:impl_trait>
|
||||||
|
|
||||||
|
|
|
@ -489,12 +489,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl From<computed_value::T> for SpecifiedValue {
|
|
||||||
fn from(other: computed_value::T) -> Self {
|
|
||||||
SpecifiedValue::Keyword(other)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn get_initial_value() -> computed_value::T {
|
pub fn get_initial_value() -> computed_value::T {
|
||||||
computed_value::T::${to_rust_ident(values.split()[0])}
|
computed_value::T::${to_rust_ident(values.split()[0])}
|
||||||
|
|
|
@ -59,7 +59,7 @@ ${helpers.gecko_keyword_conversion(Keyword('border-style',
|
||||||
// FIXME(#4126): when gfx supports painting it, make this Size2D<LengthOrPercentage>
|
// FIXME(#4126): when gfx supports painting it, make this Size2D<LengthOrPercentage>
|
||||||
% for corner in ["top-left", "top-right", "bottom-right", "bottom-left"]:
|
% for corner in ["top-left", "top-right", "bottom-right", "bottom-left"]:
|
||||||
${helpers.predefined_type("border-" + corner + "-radius", "BorderCornerRadius",
|
${helpers.predefined_type("border-" + corner + "-radius", "BorderCornerRadius",
|
||||||
"computed::LengthOrPercentage::zero().into()",
|
"computed::BorderCornerRadius::zero()",
|
||||||
"parse", extra_prefixes="webkit",
|
"parse", extra_prefixes="webkit",
|
||||||
spec="https://drafts.csswg.org/css-backgrounds/#border-%s-radius" % corner,
|
spec="https://drafts.csswg.org/css-backgrounds/#border-%s-radius" % corner,
|
||||||
boxed=True,
|
boxed=True,
|
||||||
|
|
|
@ -420,14 +420,14 @@ ${helpers.single_keyword_system("font-style",
|
||||||
"titling-caps": "TITLING" } %>
|
"titling-caps": "TITLING" } %>
|
||||||
|
|
||||||
${helpers.single_keyword_system("font-variant-caps",
|
${helpers.single_keyword_system("font-variant-caps",
|
||||||
"normal small-caps",
|
"normal small-caps",
|
||||||
extra_gecko_values="all-small-caps petite-caps all-petite-caps unicase titling-caps",
|
extra_gecko_values="all-small-caps petite-caps all-petite-caps unicase titling-caps",
|
||||||
gecko_constant_prefix="NS_FONT_VARIANT_CAPS",
|
gecko_constant_prefix="NS_FONT_VARIANT_CAPS",
|
||||||
gecko_ffi_name="mFont.variantCaps",
|
gecko_ffi_name="mFont.variantCaps",
|
||||||
spec="https://drafts.csswg.org/css-fonts/#propdef-font-variant-caps",
|
spec="https://drafts.csswg.org/css-fonts/#propdef-font-variant-caps",
|
||||||
custom_consts=font_variant_caps_custom_consts,
|
custom_consts=font_variant_caps_custom_consts,
|
||||||
flags="APPLIES_TO_FIRST_LETTER APPLIES_TO_FIRST_LINE APPLIES_TO_PLACEHOLDER",
|
flags="APPLIES_TO_FIRST_LETTER APPLIES_TO_FIRST_LINE APPLIES_TO_PLACEHOLDER",
|
||||||
animation_value_type="discrete")}
|
animation_value_type="discrete")}
|
||||||
|
|
||||||
<%helpers:longhand name="font-weight" need_clone="True" animation_value_type="ComputedValue"
|
<%helpers:longhand name="font-weight" need_clone="True" animation_value_type="ComputedValue"
|
||||||
flags="APPLIES_TO_FIRST_LETTER APPLIES_TO_FIRST_LINE APPLIES_TO_PLACEHOLDER"
|
flags="APPLIES_TO_FIRST_LETTER APPLIES_TO_FIRST_LINE APPLIES_TO_PLACEHOLDER"
|
||||||
|
|
|
@ -20,112 +20,9 @@ ${helpers.single_keyword("caption-side", "top bottom",
|
||||||
animation_value_type="discrete",
|
animation_value_type="discrete",
|
||||||
spec="https://drafts.csswg.org/css-tables/#propdef-caption-side")}
|
spec="https://drafts.csswg.org/css-tables/#propdef-caption-side")}
|
||||||
|
|
||||||
<%helpers:longhand name="border-spacing" animation_value_type="BorderSpacing" boxed="True"
|
${helpers.predefined_type("border-spacing",
|
||||||
spec="https://drafts.csswg.org/css-tables/#propdef-border-spacing">
|
"BorderSpacing",
|
||||||
use values::specified::{AllowQuirks, Length};
|
"computed::BorderSpacing::zero()",
|
||||||
use values::specified::length::NonNegativeLength;
|
animation_value_type="BorderSpacing",
|
||||||
|
boxed="True",
|
||||||
pub mod computed_value {
|
spec="https://drafts.csswg.org/css-tables/#propdef-border-spacing")}
|
||||||
use values::animated::{ToAnimatedValue, ToAnimatedZero};
|
|
||||||
use values::computed::NonNegativeLength;
|
|
||||||
|
|
||||||
#[cfg_attr(feature = "gecko", derive(MallocSizeOf))]
|
|
||||||
#[cfg_attr(feature = "servo", derive(HeapSizeOf))]
|
|
||||||
#[derive(Animate, Clone, ComputeSquaredDistance, Copy, Debug, PartialEq, ToCss)]
|
|
||||||
pub struct T {
|
|
||||||
pub horizontal: NonNegativeLength,
|
|
||||||
pub vertical: NonNegativeLength,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl ToAnimatedZero for T {
|
|
||||||
#[inline]
|
|
||||||
fn to_animated_zero(&self) -> Result<Self, ()> { Err(()) }
|
|
||||||
}
|
|
||||||
|
|
||||||
impl ToAnimatedValue for T {
|
|
||||||
type AnimatedValue = Self;
|
|
||||||
|
|
||||||
#[inline]
|
|
||||||
fn to_animated_value(self) -> Self {
|
|
||||||
self
|
|
||||||
}
|
|
||||||
|
|
||||||
#[inline]
|
|
||||||
fn from_animated_value(animated: Self::AnimatedValue) -> Self {
|
|
||||||
T {
|
|
||||||
horizontal: ToAnimatedValue::from_animated_value(animated.horizontal),
|
|
||||||
vertical: ToAnimatedValue::from_animated_value(animated.vertical)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[cfg_attr(feature = "gecko", derive(MallocSizeOf))]
|
|
||||||
#[cfg_attr(feature = "servo", derive(HeapSizeOf))]
|
|
||||||
#[derive(Clone, Debug, PartialEq, ToCss)]
|
|
||||||
pub struct SpecifiedValue {
|
|
||||||
pub horizontal: NonNegativeLength,
|
|
||||||
pub vertical: Option<NonNegativeLength>,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[inline]
|
|
||||||
pub fn get_initial_value() -> computed_value::T {
|
|
||||||
use values::computed::NonNegativeLength as ComputedNonNegativeLength;
|
|
||||||
computed_value::T {
|
|
||||||
horizontal: ComputedNonNegativeLength::zero(),
|
|
||||||
vertical: ComputedNonNegativeLength::zero(),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl ToComputedValue for SpecifiedValue {
|
|
||||||
type ComputedValue = computed_value::T;
|
|
||||||
|
|
||||||
#[inline]
|
|
||||||
fn to_computed_value(&self, context: &Context) -> computed_value::T {
|
|
||||||
let horizontal = self.horizontal.to_computed_value(context);
|
|
||||||
computed_value::T {
|
|
||||||
horizontal: horizontal,
|
|
||||||
vertical: self.vertical.as_ref().map_or(horizontal, |v| v.to_computed_value(context)),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[inline]
|
|
||||||
fn from_computed_value(computed: &computed_value::T) -> Self {
|
|
||||||
SpecifiedValue {
|
|
||||||
horizontal: ToComputedValue::from_computed_value(&computed.horizontal),
|
|
||||||
vertical: Some(ToComputedValue::from_computed_value(&computed.vertical)),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn parse<'i, 't>(context: &ParserContext, input: &mut Parser<'i, 't>)
|
|
||||||
-> Result<SpecifiedValue,ParseError<'i>> {
|
|
||||||
let mut first = None;
|
|
||||||
let mut second = None;
|
|
||||||
match Length::parse_non_negative_quirky(context, input, AllowQuirks::Yes) {
|
|
||||||
Err(_) => (),
|
|
||||||
Ok(length) => {
|
|
||||||
first = Some(length);
|
|
||||||
if let Ok(len) = input.try(|i| Length::parse_non_negative_quirky(context, i, AllowQuirks::Yes)) {
|
|
||||||
second = Some(len);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
match (first, second) {
|
|
||||||
(None, None) => Err(StyleParseError::UnspecifiedError.into()),
|
|
||||||
(Some(length), None) => {
|
|
||||||
Ok(SpecifiedValue {
|
|
||||||
horizontal: length.into(),
|
|
||||||
vertical: None,
|
|
||||||
})
|
|
||||||
}
|
|
||||||
(Some(horizontal), Some(vertical)) => {
|
|
||||||
Ok(SpecifiedValue {
|
|
||||||
horizontal: horizontal.into(),
|
|
||||||
vertical: Some(vertical.into()),
|
|
||||||
})
|
|
||||||
}
|
|
||||||
(None, Some(_)) => unreachable!(),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</%helpers:longhand>
|
|
||||||
|
|
|
@ -78,7 +78,7 @@ ${helpers.predefined_type("outline-width",
|
||||||
// The -moz-outline-radius-* properties are non-standard and not on a standards track.
|
// The -moz-outline-radius-* properties are non-standard and not on a standards track.
|
||||||
% for corner in ["topleft", "topright", "bottomright", "bottomleft"]:
|
% for corner in ["topleft", "topright", "bottomright", "bottomleft"]:
|
||||||
${helpers.predefined_type("-moz-outline-radius-" + corner, "BorderCornerRadius",
|
${helpers.predefined_type("-moz-outline-radius-" + corner, "BorderCornerRadius",
|
||||||
"computed::LengthOrPercentage::zero().into()",
|
"computed::BorderCornerRadius::zero()",
|
||||||
products="gecko",
|
products="gecko",
|
||||||
boxed=True,
|
boxed=True,
|
||||||
animation_value_type="BorderCornerRadius",
|
animation_value_type="BorderCornerRadius",
|
||||||
|
|
|
@ -209,6 +209,7 @@ pub fn parse_border<'i, 't>(context: &ParserContext, input: &mut Parser<'i, 't>)
|
||||||
for corner in ['top-left', 'top-right', 'bottom-right', 'bottom-left']
|
for corner in ['top-left', 'top-right', 'bottom-right', 'bottom-left']
|
||||||
)}" extra_prefixes="webkit" spec="https://drafts.csswg.org/css-backgrounds/#border-radius">
|
)}" extra_prefixes="webkit" spec="https://drafts.csswg.org/css-backgrounds/#border-radius">
|
||||||
use values::generics::rect::Rect;
|
use values::generics::rect::Rect;
|
||||||
|
use values::generics::border::BorderCornerRadius;
|
||||||
use values::specified::border::BorderRadius;
|
use values::specified::border::BorderRadius;
|
||||||
use parser::Parse;
|
use parser::Parse;
|
||||||
|
|
||||||
|
@ -226,14 +227,15 @@ pub fn parse_border<'i, 't>(context: &ParserContext, input: &mut Parser<'i, 't>)
|
||||||
impl<'a> ToCss for LonghandsToSerialize<'a> {
|
impl<'a> ToCss for LonghandsToSerialize<'a> {
|
||||||
fn to_css<W>(&self, dest: &mut W) -> fmt::Result where W: fmt::Write {
|
fn to_css<W>(&self, dest: &mut W) -> fmt::Result where W: fmt::Write {
|
||||||
let LonghandsToSerialize {
|
let LonghandsToSerialize {
|
||||||
border_top_left_radius: ref tl,
|
border_top_left_radius: &BorderCornerRadius(ref tl),
|
||||||
border_top_right_radius: ref tr,
|
border_top_right_radius: &BorderCornerRadius(ref tr),
|
||||||
border_bottom_right_radius: ref br,
|
border_bottom_right_radius: &BorderCornerRadius(ref br),
|
||||||
border_bottom_left_radius: ref bl,
|
border_bottom_left_radius: &BorderCornerRadius(ref bl),
|
||||||
} = *self;
|
} = *self;
|
||||||
|
|
||||||
let widths = Rect::new(&tl.0.width, &tr.0.width, &br.0.width, &bl.0.width);
|
|
||||||
let heights = Rect::new(&tl.0.height, &tr.0.height, &br.0.height, &bl.0.height);
|
let widths = Rect::new(tl.width(), tr.width(), br.width(), bl.width());
|
||||||
|
let heights = Rect::new(tl.height(), tr.height(), br.height(), bl.height());
|
||||||
|
|
||||||
BorderRadius::serialize_rects(widths, heights, dest)
|
BorderRadius::serialize_rects(widths, heights, dest)
|
||||||
}
|
}
|
||||||
|
|
|
@ -77,15 +77,17 @@
|
||||||
|
|
||||||
impl<'a> ToCss for LonghandsToSerialize<'a> {
|
impl<'a> ToCss for LonghandsToSerialize<'a> {
|
||||||
fn to_css<W>(&self, dest: &mut W) -> fmt::Result where W: fmt::Write {
|
fn to_css<W>(&self, dest: &mut W) -> fmt::Result where W: fmt::Write {
|
||||||
|
use values::generics::border::BorderCornerRadius;
|
||||||
|
|
||||||
let LonghandsToSerialize {
|
let LonghandsToSerialize {
|
||||||
_moz_outline_radius_topleft: ref tl,
|
_moz_outline_radius_topleft: &BorderCornerRadius(ref tl),
|
||||||
_moz_outline_radius_topright: ref tr,
|
_moz_outline_radius_topright: &BorderCornerRadius(ref tr),
|
||||||
_moz_outline_radius_bottomright: ref br,
|
_moz_outline_radius_bottomright: &BorderCornerRadius(ref br),
|
||||||
_moz_outline_radius_bottomleft: ref bl,
|
_moz_outline_radius_bottomleft: &BorderCornerRadius(ref bl),
|
||||||
} = *self;
|
} = *self;
|
||||||
|
|
||||||
let widths = Rect::new(&tl.0.width, &tr.0.width, &br.0.width, &bl.0.width);
|
let widths = Rect::new(tl.width(), tr.width(), br.width(), bl.width());
|
||||||
let heights = Rect::new(&tl.0.height, &tr.0.height, &br.0.height, &bl.0.height);
|
let heights = Rect::new(tl.height(), tr.height(), br.height(), bl.height());
|
||||||
|
|
||||||
BorderRadius::serialize_rects(widths, heights, dest)
|
BorderRadius::serialize_rects(widths, heights, dest)
|
||||||
}
|
}
|
||||||
|
|
|
@ -348,8 +348,8 @@ impl ToAnimatedValue for ComputedBorderCornerRadius {
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
fn from_animated_value(animated: Self::AnimatedValue) -> Self {
|
fn from_animated_value(animated: Self::AnimatedValue) -> Self {
|
||||||
ComputedBorderCornerRadius::new(animated.0.width.clamp_to_non_negative(),
|
ComputedBorderCornerRadius::new((animated.0).0.width.clamp_to_non_negative(),
|
||||||
animated.0.height.clamp_to_non_negative())
|
(animated.0).0.height.clamp_to_non_negative())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,12 +4,15 @@
|
||||||
|
|
||||||
//! Computed types for CSS values related to borders.
|
//! Computed types for CSS values related to borders.
|
||||||
|
|
||||||
|
use app_units::Au;
|
||||||
use values::animated::ToAnimatedZero;
|
use values::animated::ToAnimatedZero;
|
||||||
use values::computed::{Number, NumberOrPercentage};
|
use values::computed::{Number, NumberOrPercentage};
|
||||||
use values::computed::length::LengthOrPercentage;
|
use values::computed::length::{LengthOrPercentage, NonNegativeLength};
|
||||||
|
use values::generics::border::BorderCornerRadius as GenericBorderCornerRadius;
|
||||||
use values::generics::border::BorderImageSideWidth as GenericBorderImageSideWidth;
|
use values::generics::border::BorderImageSideWidth as GenericBorderImageSideWidth;
|
||||||
use values::generics::border::BorderImageSlice as GenericBorderImageSlice;
|
use values::generics::border::BorderImageSlice as GenericBorderImageSlice;
|
||||||
use values::generics::border::BorderRadius as GenericBorderRadius;
|
use values::generics::border::BorderRadius as GenericBorderRadius;
|
||||||
|
use values::generics::border::BorderSpacing as GenericBorderSpacing;
|
||||||
use values::generics::rect::Rect;
|
use values::generics::rect::Rect;
|
||||||
use values::generics::size::Size;
|
use values::generics::size::Size;
|
||||||
|
|
||||||
|
@ -26,7 +29,10 @@ pub type BorderImageSlice = GenericBorderImageSlice<NumberOrPercentage>;
|
||||||
pub type BorderRadius = GenericBorderRadius<LengthOrPercentage>;
|
pub type BorderRadius = GenericBorderRadius<LengthOrPercentage>;
|
||||||
|
|
||||||
/// A computed value for the `border-*-radius` longhand properties.
|
/// A computed value for the `border-*-radius` longhand properties.
|
||||||
pub type BorderCornerRadius = Size<LengthOrPercentage>;
|
pub type BorderCornerRadius = GenericBorderCornerRadius<LengthOrPercentage>;
|
||||||
|
|
||||||
|
/// A computed value for the `border-spacing` longhand property.
|
||||||
|
pub type BorderSpacing = GenericBorderSpacing<NonNegativeLength>;
|
||||||
|
|
||||||
impl BorderImageSideWidth {
|
impl BorderImageSideWidth {
|
||||||
/// Returns `1`.
|
/// Returns `1`.
|
||||||
|
@ -36,6 +42,38 @@ impl BorderImageSideWidth {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl BorderSpacing {
|
||||||
|
/// Returns `0 0`.
|
||||||
|
pub fn zero() -> Self {
|
||||||
|
GenericBorderSpacing(Size::new(NonNegativeLength::zero(), NonNegativeLength::zero()))
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Returns the horizontal spacing.
|
||||||
|
pub fn horizontal(&self) -> Au {
|
||||||
|
Au::from(*self.0.width())
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Returns the vertical spacing.
|
||||||
|
pub fn vertical(&self) -> Au {
|
||||||
|
Au::from(*self.0.height())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl BorderCornerRadius {
|
||||||
|
/// Returns `0 0`.
|
||||||
|
pub fn zero() -> Self {
|
||||||
|
GenericBorderCornerRadius(Size::new(LengthOrPercentage::zero(), LengthOrPercentage::zero()))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl ToAnimatedZero for BorderSpacing {
|
||||||
|
#[inline]
|
||||||
|
fn to_animated_zero(&self) -> Result<Self, ()> {
|
||||||
|
// FIXME(emilio): Why?
|
||||||
|
Err(())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
impl ToAnimatedZero for BorderCornerRadius {
|
impl ToAnimatedZero for BorderCornerRadius {
|
||||||
#[inline]
|
#[inline]
|
||||||
fn to_animated_zero(&self) -> Result<Self, ()> {
|
fn to_animated_zero(&self) -> Result<Self, ()> {
|
||||||
|
|
|
@ -35,7 +35,7 @@ pub use self::align::{AlignItems, AlignJustifyContent, AlignJustifySelf, Justify
|
||||||
pub use self::angle::Angle;
|
pub use self::angle::Angle;
|
||||||
pub use self::background::BackgroundSize;
|
pub use self::background::BackgroundSize;
|
||||||
pub use self::border::{BorderImageSlice, BorderImageWidth, BorderImageSideWidth};
|
pub use self::border::{BorderImageSlice, BorderImageWidth, BorderImageSideWidth};
|
||||||
pub use self::border::{BorderRadius, BorderCornerRadius};
|
pub use self::border::{BorderRadius, BorderCornerRadius, BorderSpacing};
|
||||||
pub use self::box_::VerticalAlign;
|
pub use self::box_::VerticalAlign;
|
||||||
pub use self::color::{Color, ColorPropertyValue, RGBAColor};
|
pub use self::color::{Color, ColorPropertyValue, RGBAColor};
|
||||||
pub use self::effects::{BoxShadow, Filter, SimpleShadow};
|
pub use self::effects::{BoxShadow, Filter, SimpleShadow};
|
||||||
|
|
|
@ -33,6 +33,34 @@ pub struct BorderImageSlice<NumberOrPercentage> {
|
||||||
pub fill: bool,
|
pub fill: bool,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// A generic value for the `border-*-radius` longhand properties.
|
||||||
|
#[cfg_attr(feature = "gecko", derive(MallocSizeOf))]
|
||||||
|
#[cfg_attr(feature = "servo", derive(HeapSizeOf))]
|
||||||
|
#[derive(Animate, Clone, ComputeSquaredDistance, Copy, Debug)]
|
||||||
|
#[derive(PartialEq, ToComputedValue, ToCss)]
|
||||||
|
pub struct BorderCornerRadius<L>(pub Size<L>);
|
||||||
|
|
||||||
|
impl<L> BorderCornerRadius<L> {
|
||||||
|
/// Trivially create a `BorderCornerRadius`.
|
||||||
|
pub fn new(w: L, h: L) -> Self {
|
||||||
|
BorderCornerRadius(Size::new(w, h))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// A generic value for the `border-spacing` property.
|
||||||
|
#[cfg_attr(feature = "gecko", derive(MallocSizeOf))]
|
||||||
|
#[cfg_attr(feature = "servo", derive(HeapSizeOf))]
|
||||||
|
#[derive(Animate, Clone, ComputeSquaredDistance, Copy, Debug)]
|
||||||
|
#[derive(PartialEq, ToAnimatedValue, ToComputedValue, ToCss)]
|
||||||
|
pub struct BorderSpacing<L>(pub Size<L>);
|
||||||
|
|
||||||
|
impl<L> BorderSpacing<L> {
|
||||||
|
/// Trivially create a `BorderCornerRadius`.
|
||||||
|
pub fn new(w: L, h: L) -> Self {
|
||||||
|
BorderSpacing(Size::new(w, h))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// A generic value for `border-radius`, `outline-radius` and `inset()`.
|
/// A generic value for `border-radius`, `outline-radius` and `inset()`.
|
||||||
///
|
///
|
||||||
/// https://drafts.csswg.org/css-backgrounds-3/#border-radius
|
/// https://drafts.csswg.org/css-backgrounds-3/#border-radius
|
||||||
|
@ -42,13 +70,13 @@ pub struct BorderImageSlice<NumberOrPercentage> {
|
||||||
#[derive(PartialEq, ToComputedValue)]
|
#[derive(PartialEq, ToComputedValue)]
|
||||||
pub struct BorderRadius<LengthOrPercentage> {
|
pub struct BorderRadius<LengthOrPercentage> {
|
||||||
/// The top left radius.
|
/// The top left radius.
|
||||||
pub top_left: Size<LengthOrPercentage>,
|
pub top_left: BorderCornerRadius<LengthOrPercentage>,
|
||||||
/// The top right radius.
|
/// The top right radius.
|
||||||
pub top_right: Size<LengthOrPercentage>,
|
pub top_right: BorderCornerRadius<LengthOrPercentage>,
|
||||||
/// The bottom right radius.
|
/// The bottom right radius.
|
||||||
pub bottom_right: Size<LengthOrPercentage>,
|
pub bottom_right: BorderCornerRadius<LengthOrPercentage>,
|
||||||
/// The bottom left radius.
|
/// The bottom left radius.
|
||||||
pub bottom_left: Size<LengthOrPercentage>,
|
pub bottom_left: BorderCornerRadius<LengthOrPercentage>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<N> From<N> for BorderImageSlice<N>
|
impl<N> From<N> for BorderImageSlice<N>
|
||||||
|
@ -80,7 +108,12 @@ impl<N> ToCss for BorderImageSlice<N>
|
||||||
impl<L> BorderRadius<L> {
|
impl<L> BorderRadius<L> {
|
||||||
/// Returns a new `BorderRadius<L>`.
|
/// Returns a new `BorderRadius<L>`.
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn new(tl: Size<L>, tr: Size<L>, br: Size<L>, bl: Size<L>) -> Self {
|
pub fn new(
|
||||||
|
tl: BorderCornerRadius<L>,
|
||||||
|
tr: BorderCornerRadius<L>,
|
||||||
|
br: BorderCornerRadius<L>,
|
||||||
|
bl: BorderCornerRadius<L>
|
||||||
|
) -> Self {
|
||||||
BorderRadius {
|
BorderRadius {
|
||||||
top_left: tl,
|
top_left: tl,
|
||||||
top_right: tr,
|
top_right: tr,
|
||||||
|
@ -112,10 +145,10 @@ impl<L> ToCss for BorderRadius<L>
|
||||||
{
|
{
|
||||||
fn to_css<W>(&self, dest: &mut W) -> fmt::Result where W: fmt::Write {
|
fn to_css<W>(&self, dest: &mut W) -> fmt::Result where W: fmt::Write {
|
||||||
let BorderRadius {
|
let BorderRadius {
|
||||||
top_left: ref tl,
|
top_left: BorderCornerRadius(ref tl),
|
||||||
top_right: ref tr,
|
top_right: BorderCornerRadius(ref tr),
|
||||||
bottom_right: ref br,
|
bottom_right: BorderCornerRadius(ref br),
|
||||||
bottom_left: ref bl,
|
bottom_left: BorderCornerRadius(ref bl),
|
||||||
} = *self;
|
} = *self;
|
||||||
|
|
||||||
let widths = Rect::new(&tl.0.width, &tr.0.width, &br.0.width, &bl.0.width);
|
let widths = Rect::new(&tl.0.width, &tr.0.width, &br.0.width, &bl.0.width);
|
||||||
|
|
|
@ -7,14 +7,16 @@
|
||||||
use cssparser::Parser;
|
use cssparser::Parser;
|
||||||
use parser::{Parse, ParserContext};
|
use parser::{Parse, ParserContext};
|
||||||
use style_traits::ParseError;
|
use style_traits::ParseError;
|
||||||
use values::computed::{Context, NonNegativeLength, ToComputedValue};
|
use values::computed::{self, Context, ToComputedValue};
|
||||||
use values::generics::size::Size;
|
use values::generics::border::BorderCornerRadius as GenericBorderCornerRadius;
|
||||||
use values::generics::border::BorderImageSideWidth as GenericBorderImageSideWidth;
|
use values::generics::border::BorderImageSideWidth as GenericBorderImageSideWidth;
|
||||||
use values::generics::border::BorderImageSlice as GenericBorderImageSlice;
|
use values::generics::border::BorderImageSlice as GenericBorderImageSlice;
|
||||||
use values::generics::border::BorderRadius as GenericBorderRadius;
|
use values::generics::border::BorderRadius as GenericBorderRadius;
|
||||||
|
use values::generics::border::BorderSpacing as GenericBorderSpacing;
|
||||||
use values::generics::rect::Rect;
|
use values::generics::rect::Rect;
|
||||||
|
use values::generics::size::Size;
|
||||||
use values::specified::{AllowQuirks, Number, NumberOrPercentage};
|
use values::specified::{AllowQuirks, Number, NumberOrPercentage};
|
||||||
use values::specified::length::{Length, LengthOrPercentage};
|
use values::specified::length::{Length, LengthOrPercentage, NonNegativeLength};
|
||||||
|
|
||||||
/// A specified value for a single side of the `border-width` property.
|
/// A specified value for a single side of the `border-width` property.
|
||||||
#[cfg_attr(feature = "gecko", derive(MallocSizeOf))]
|
#[cfg_attr(feature = "gecko", derive(MallocSizeOf))]
|
||||||
|
@ -44,7 +46,10 @@ pub type BorderImageSlice = GenericBorderImageSlice<NumberOrPercentage>;
|
||||||
pub type BorderRadius = GenericBorderRadius<LengthOrPercentage>;
|
pub type BorderRadius = GenericBorderRadius<LengthOrPercentage>;
|
||||||
|
|
||||||
/// A specified value for the `border-*-radius` longhand properties.
|
/// A specified value for the `border-*-radius` longhand properties.
|
||||||
pub type BorderCornerRadius = Size<LengthOrPercentage>;
|
pub type BorderCornerRadius = GenericBorderCornerRadius<LengthOrPercentage>;
|
||||||
|
|
||||||
|
/// A specified value for the `border-spacing` longhand properties.
|
||||||
|
pub type BorderSpacing = GenericBorderSpacing<NonNegativeLength>;
|
||||||
|
|
||||||
impl BorderSideWidth {
|
impl BorderSideWidth {
|
||||||
/// Parses, with quirks.
|
/// Parses, with quirks.
|
||||||
|
@ -72,7 +77,7 @@ impl Parse for BorderSideWidth {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl ToComputedValue for BorderSideWidth {
|
impl ToComputedValue for BorderSideWidth {
|
||||||
type ComputedValue = NonNegativeLength;
|
type ComputedValue = computed::NonNegativeLength;
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
fn to_computed_value(&self, context: &Context) -> Self::ComputedValue {
|
fn to_computed_value(&self, context: &Context) -> Self::ComputedValue {
|
||||||
|
@ -149,11 +154,22 @@ impl Parse for BorderRadius {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Parse for BorderCornerRadius {
|
impl Parse for BorderCornerRadius {
|
||||||
fn parse<'i, 't>(context: &ParserContext, input: &mut Parser<'i, 't>) -> Result<Self, ParseError<'i>> {
|
fn parse<'i, 't>(
|
||||||
let first = LengthOrPercentage::parse_non_negative(context, input)?;
|
context: &ParserContext,
|
||||||
let second = input
|
input: &mut Parser<'i, 't>
|
||||||
.try(|i| LengthOrPercentage::parse_non_negative(context, i))
|
) -> Result<Self, ParseError<'i>> {
|
||||||
.unwrap_or_else(|_| first.clone());
|
Size::parse_with(context, input, LengthOrPercentage::parse_non_negative)
|
||||||
Ok(Self::new(first, second))
|
.map(GenericBorderCornerRadius)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Parse for BorderSpacing {
|
||||||
|
fn parse<'i, 't>(
|
||||||
|
context: &ParserContext,
|
||||||
|
input: &mut Parser<'i, 't>
|
||||||
|
) -> Result<Self, ParseError<'i>> {
|
||||||
|
Size::parse_with(context, input, |context, input| {
|
||||||
|
Length::parse_non_negative_quirky(context, input, AllowQuirks::Yes).map(From::from)
|
||||||
|
}).map(GenericBorderSpacing)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -29,7 +29,7 @@ pub use self::angle::Angle;
|
||||||
pub use self::align::{AlignItems, AlignJustifyContent, AlignJustifySelf, JustifyItems};
|
pub use self::align::{AlignItems, AlignJustifyContent, AlignJustifySelf, JustifyItems};
|
||||||
pub use self::background::BackgroundSize;
|
pub use self::background::BackgroundSize;
|
||||||
pub use self::border::{BorderCornerRadius, BorderImageSlice, BorderImageWidth};
|
pub use self::border::{BorderCornerRadius, BorderImageSlice, BorderImageWidth};
|
||||||
pub use self::border::{BorderImageSideWidth, BorderRadius, BorderSideWidth};
|
pub use self::border::{BorderImageSideWidth, BorderRadius, BorderSideWidth, BorderSpacing};
|
||||||
pub use self::box_::VerticalAlign;
|
pub use self::box_::VerticalAlign;
|
||||||
pub use self::color::{Color, ColorPropertyValue, RGBAColor};
|
pub use self::color::{Color, ColorPropertyValue, RGBAColor};
|
||||||
pub use self::effects::{BoxShadow, Filter, SimpleShadow};
|
pub use self::effects::{BoxShadow, Filter, SimpleShadow};
|
||||||
|
|
|
@ -139,7 +139,7 @@ use style::traversal::resolve_style;
|
||||||
use style::traversal_flags::{TraversalFlags, self};
|
use style::traversal_flags::{TraversalFlags, self};
|
||||||
use style::values::{CustomIdent, KeyframesName};
|
use style::values::{CustomIdent, KeyframesName};
|
||||||
use style::values::animated::{Animate, Procedure, ToAnimatedZero};
|
use style::values::animated::{Animate, Procedure, ToAnimatedZero};
|
||||||
use style::values::computed::Context;
|
use style::values::computed::{Context, ToComputedValue};
|
||||||
use style::values::distance::ComputeSquaredDistance;
|
use style::values::distance::ComputeSquaredDistance;
|
||||||
use style_traits::{PARSING_MODE_DEFAULT, ToCss};
|
use style_traits::{PARSING_MODE_DEFAULT, ToCss};
|
||||||
use super::error_reporter::ErrorReporter;
|
use super::error_reporter::ErrorReporter;
|
||||||
|
@ -2636,7 +2636,7 @@ pub extern "C" fn Servo_DeclarationBlock_SetKeywordValue(declarations:
|
||||||
// We rely on Gecko passing in font-size values (0...7) here.
|
// We rely on Gecko passing in font-size values (0...7) here.
|
||||||
longhands::font_size::SpecifiedValue::from_html_size(value as u8)
|
longhands::font_size::SpecifiedValue::from_html_size(value as u8)
|
||||||
},
|
},
|
||||||
FontStyle => longhands::font_style::computed_value::T::from_gecko_keyword(value).into(),
|
FontStyle => ToComputedValue::from_computed_value(&longhands::font_style::computed_value::T::from_gecko_keyword(value)),
|
||||||
FontWeight => longhands::font_weight::SpecifiedValue::from_gecko_keyword(value),
|
FontWeight => longhands::font_weight::SpecifiedValue::from_gecko_keyword(value),
|
||||||
ListStyleType => Box::new(longhands::list_style_type::SpecifiedValue::from_gecko_keyword(value)),
|
ListStyleType => Box::new(longhands::list_style_type::SpecifiedValue::from_gecko_keyword(value)),
|
||||||
MozMathVariant => longhands::_moz_math_variant::SpecifiedValue::from_gecko_keyword(value),
|
MozMathVariant => longhands::_moz_math_variant::SpecifiedValue::from_gecko_keyword(value),
|
||||||
|
@ -2680,9 +2680,8 @@ pub extern "C" fn Servo_DeclarationBlock_SetPixelValue(declarations:
|
||||||
use style::properties::longhands::border_spacing::SpecifiedValue as BorderSpacing;
|
use style::properties::longhands::border_spacing::SpecifiedValue as BorderSpacing;
|
||||||
use style::properties::longhands::height::SpecifiedValue as Height;
|
use style::properties::longhands::height::SpecifiedValue as Height;
|
||||||
use style::properties::longhands::width::SpecifiedValue as Width;
|
use style::properties::longhands::width::SpecifiedValue as Width;
|
||||||
use style::values::specified::BorderSideWidth;
|
use style::values::specified::{BorderSideWidth, MozLength, BorderCornerRadius};
|
||||||
use style::values::specified::MozLength;
|
use style::values::specified::length::{NoCalcLength, NonNegativeLength, LengthOrPercentage};
|
||||||
use style::values::specified::length::{NoCalcLength, LengthOrPercentage};
|
|
||||||
|
|
||||||
let long = get_longhand_from_id!(property);
|
let long = get_longhand_from_id!(property);
|
||||||
let nocalc = NoCalcLength::from_px(value);
|
let nocalc = NoCalcLength::from_px(value);
|
||||||
|
@ -2702,16 +2701,26 @@ pub extern "C" fn Servo_DeclarationBlock_SetPixelValue(declarations:
|
||||||
PaddingRight => nocalc.into(),
|
PaddingRight => nocalc.into(),
|
||||||
PaddingBottom => nocalc.into(),
|
PaddingBottom => nocalc.into(),
|
||||||
PaddingLeft => nocalc.into(),
|
PaddingLeft => nocalc.into(),
|
||||||
BorderSpacing => Box::new(
|
BorderSpacing => {
|
||||||
BorderSpacing {
|
let v = NonNegativeLength::from(nocalc);
|
||||||
horizontal: nocalc.into(),
|
Box::new(BorderSpacing::new(v.clone(), v))
|
||||||
vertical: None,
|
},
|
||||||
}
|
BorderTopLeftRadius => {
|
||||||
),
|
let length = LengthOrPercentage::from(nocalc);
|
||||||
BorderTopLeftRadius => Box::new(LengthOrPercentage::from(nocalc).into()),
|
Box::new(BorderCornerRadius::new(length.clone(), length))
|
||||||
BorderTopRightRadius => Box::new(LengthOrPercentage::from(nocalc).into()),
|
},
|
||||||
BorderBottomLeftRadius => Box::new(LengthOrPercentage::from(nocalc).into()),
|
BorderTopRightRadius => {
|
||||||
BorderBottomRightRadius => Box::new(LengthOrPercentage::from(nocalc).into()),
|
let length = LengthOrPercentage::from(nocalc);
|
||||||
|
Box::new(BorderCornerRadius::new(length.clone(), length))
|
||||||
|
},
|
||||||
|
BorderBottomLeftRadius => {
|
||||||
|
let length = LengthOrPercentage::from(nocalc);
|
||||||
|
Box::new(BorderCornerRadius::new(length.clone(), length))
|
||||||
|
},
|
||||||
|
BorderBottomRightRadius => {
|
||||||
|
let length = LengthOrPercentage::from(nocalc);
|
||||||
|
Box::new(BorderCornerRadius::new(length.clone(), length))
|
||||||
|
},
|
||||||
};
|
};
|
||||||
write_locked_arc(declarations, |decls: &mut PropertyDeclarationBlock| {
|
write_locked_arc(declarations, |decls: &mut PropertyDeclarationBlock| {
|
||||||
decls.push(prop, Importance::Normal);
|
decls.push(prop, Importance::Normal);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue