aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2017-02-07 15:42:40 -0800
committerGitHub <noreply@github.com>2017-02-07 15:42:40 -0800
commitec393b89b5b6aad28f5987569c0181b0bfdd965a (patch)
tree28ed93f8bf6db3fc0cd37a9698fb213580f307d3
parent96698dd05119ced20c4768630b50aab82f5fb86c (diff)
parent6bf5c2443441a082de7e8a11b7a92e5ad67c1203 (diff)
downloadservo-ec393b89b5b6aad28f5987569c0181b0bfdd965a.tar.gz
servo-ec393b89b5b6aad28f5987569c0181b0bfdd965a.zip
Auto merge of #15429 - z1mvader:master, r=jdm
removed invalid FIXME <!-- Please describe your changes on the following line: --> --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors - [X] These changes fix #__ (github issue number if applicable). <!-- Either: --> - [ ] There are tests for these changes OR - [X] These changes do not require tests because I just removed two lines <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/15429) <!-- Reviewable:end -->
-rw-r--r--components/style/properties/shorthand/box.mako.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/components/style/properties/shorthand/box.mako.rs b/components/style/properties/shorthand/box.mako.rs
index 1bcfd5caaf6..207aefc6c5c 100644
--- a/components/style/properties/shorthand/box.mako.rs
+++ b/components/style/properties/shorthand/box.mako.rs
@@ -311,8 +311,6 @@ macro_rules! try_parse_one {
try!(self.animation_duration.to_css(dest));
try!(write!(dest, " "));
- // FIXME: timing function is displaying the actual mathematical name "cubic-bezier(0.25, 0.1, 0.25, 1)"
- // instead of the common name "ease"
try!(self.animation_timing_function.to_css(dest));
try!(write!(dest, " "));