Changeset 106878 in webkit
- Timestamp:
- Feb 6, 2012, 4:55:15 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 3 added
- 3 edited
-
LayoutTests/ChangeLog (modified) (1 diff)
-
LayoutTests/svg/animations/animate-color-fill-from-by-expected.txt (added)
-
LayoutTests/svg/animations/animate-color-fill-from-by.html (added)
-
LayoutTests/svg/animations/script-tests/animate-color-fill-from-by.js (added)
-
Source/WebCore/ChangeLog (modified) (1 diff)
-
Source/WebCore/svg/SVGAnimatedColor.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r106876 r106878 1 2012-02-06 Philip Rogers <pdr@google.com> 2 3 Fix color animations by value 4 https://bugs.webkit.org/show_bug.cgi?id=77812 5 6 Reviewed by Darin Adler. 7 8 * svg/animations/animate-color-fill-from-by-expected.txt: Added. 9 * svg/animations/animate-color-fill-from-by.html: Added. 10 * svg/animations/script-tests/animate-color-fill-from-by.js: Added. 11 (checkFillColor): 12 (sample1): 13 (sample2): 14 (sample3): 15 (executeTest): 16 1 17 2012-02-03 Jer Noble <jer.noble@apple.com> 2 18 -
trunk/Source/WebCore/ChangeLog
r106876 r106878 1 2012-02-06 Philip Rogers <pdr@google.com> 2 3 Fix color animations by value 4 https://bugs.webkit.org/show_bug.cgi?id=77812 5 6 Reviewed by Darin Adler. 7 8 Test: svg/animations/animate-color-fill-from-by.html 9 10 * svg/SVGAnimatedColor.cpp: 11 (WebCore::SVGAnimatedColorAnimator::calculateFromAndByValues): 12 1 13 2012-02-03 Jer Noble <jer.noble@apple.com> 2 14 -
trunk/Source/WebCore/svg/SVGAnimatedColor.cpp
r95901 r106878 61 61 from = constructFromString(fromString); 62 62 to = constructFromString(byString); 63 64 to->color() = ColorDistance::addColorsAndClamp(from->color(), to->color()); 63 65 } 64 66
Note:
See TracChangeset
for help on using the changeset viewer.