Skip to content

Commit

Permalink
style: Simplify -x-span property.
Browse files Browse the repository at this point in the history
  • Loading branch information
emilio committed Sep 12, 2019
1 parent 432b417 commit ee10699
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 61 deletions.
15 changes: 1 addition & 14 deletions components/style/properties/gecko.mako.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2296,20 +2296,7 @@ fn static_assert() {

</%self:impl_trait>

<%self:impl_trait style_struct_name="Table" skip_longhands="-x-span">
#[allow(non_snake_case)]
pub fn set__x_span(&mut self, v: longhands::_x_span::computed_value::T) {
self.gecko.mSpan = v.0
}

#[allow(non_snake_case)]
pub fn clone__x_span(&self) -> longhands::_x_span::computed_value::T {
longhands::_x_span::computed_value::T(
self.gecko.mSpan
)
}

${impl_simple_copy('_x_span', 'mSpan')}
<%self:impl_trait style_struct_name="Table">
</%self:impl_trait>

<%self:impl_trait style_struct_name="Effects" skip_longhands="clip">
Expand Down
4 changes: 2 additions & 2 deletions components/style/properties/longhands/table.mako.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ ${helpers.single_keyword(

${helpers.predefined_type(
"-x-span",
"XSpan",
"computed::XSpan(1)",
"Integer",
"1",
engines="gecko",
spec="Internal-only (for `<col span>` pres attr)",
animation_value_type="none",
Expand Down
2 changes: 0 additions & 2 deletions components/style/values/computed/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ pub use self::resolution::Resolution;
pub use self::svg::MozContextProperties;
pub use self::svg::{SVGLength, SVGOpacity, SVGPaint, SVGPaintKind};
pub use self::svg::{SVGPaintOrder, SVGStrokeDashArray, SVGWidth};
pub use self::table::XSpan;
pub use self::text::{InitialLetter, LetterSpacing, LineBreak, LineHeight};
pub use self::text::{OverflowWrap, TextOverflow, WordBreak, WordSpacing};
pub use self::text::{TextAlign, TextEmphasisPosition, TextEmphasisStyle};
Expand Down Expand Up @@ -116,7 +115,6 @@ pub mod position;
pub mod rect;
pub mod resolution;
pub mod svg;
pub mod table;
pub mod text;
pub mod time;
pub mod transform;
Expand Down
7 changes: 0 additions & 7 deletions components/style/values/computed/table.rs

This file was deleted.

2 changes: 0 additions & 2 deletions components/style/values/specified/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ pub use self::svg::MozContextProperties;
pub use self::svg::{SVGLength, SVGOpacity, SVGPaint};
pub use self::svg::{SVGPaintOrder, SVGStrokeDashArray, SVGWidth};
pub use self::svg_path::SVGPathData;
pub use self::table::XSpan;
pub use self::text::{InitialLetter, LetterSpacing, LineBreak, LineHeight, TextAlign};
pub use self::text::{OverflowWrap, TextEmphasisPosition, TextEmphasisStyle, WordBreak};
pub use self::text::{TextAlignKeyword, TextDecorationLine, TextOverflow, WordSpacing};
Expand Down Expand Up @@ -122,7 +121,6 @@ pub mod resolution;
pub mod source_size_list;
pub mod svg;
pub mod svg_path;
pub mod table;
pub mod text;
pub mod time;
pub mod transform;
Expand Down
34 changes: 0 additions & 34 deletions components/style/values/specified/table.rs

This file was deleted.

0 comments on commit ee10699

Please sign in to comment.