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 -->
This commit is contained in:
bors-servo 2017-02-07 15:42:40 -08:00 committed by GitHub
commit ec393b89b5

View file

@ -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, " "));