Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make use of Servo's border-spacing in Stylo #13450

Merged
merged 1 commit into from Sep 30, 2016
Merged
Changes from all commits
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Make use of Servo's border-spacing in Stylo

  • Loading branch information
wafflespeanut committed Sep 27, 2016
commit 2999581fb789d03b65d6f738653b90a5a5f50237
@@ -1443,6 +1443,22 @@ fn static_assert() {
</%self:impl_trait>


<%self:impl_trait style_struct_name="InheritedTable"
skip_longhands="border-spacing">

pub fn set_border_spacing(&mut self, v: longhands::border_spacing::computed_value::T) {
self.gecko.mBorderSpacingCol = v.horizontal.0;
self.gecko.mBorderSpacingRow = v.vertical.0;
}

pub fn copy_border_spacing_from(&mut self, other: &Self) {
self.gecko.mBorderSpacingCol = other.gecko.mBorderSpacingCol;
self.gecko.mBorderSpacingRow = other.gecko.mBorderSpacingRow;
}

</%self:impl_trait>


<%self:impl_trait style_struct_name="InheritedText"
skip_longhands="text-align text-shadow line-height word-spacing">

@@ -16,7 +16,7 @@ ${helpers.single_keyword("caption-side", "top bottom",
extra_gecko_values="right left top-outside bottom-outside",
animatable=False)}

<%helpers:longhand name="border-spacing" products="servo" animatable="False">
<%helpers:longhand name="border-spacing" animatable="False">
use app_units::Au;
use values::LocalToCss;
use values::HasViewportPercentage;
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.