Title: [243532] trunk/Source/WebCore
Revision
243532
Author
s...@apple.com
Date
2019-03-26 18:05:32 -0700 (Tue, 26 Mar 2019)

Log Message

Unreviewed Windows build fix
https://bugs.webkit.org/show_bug.cgi?id=196083
<rdar://problem/49121836>

* svg/SVGAnimatorFactory.h:
(WebCore::SVGAnimatorFactory::isSupportedAttributeType):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (243531 => 243532)


--- trunk/Source/WebCore/ChangeLog	2019-03-27 00:55:19 UTC (rev 243531)
+++ trunk/Source/WebCore/ChangeLog	2019-03-27 01:05:32 UTC (rev 243532)
@@ -1,3 +1,12 @@
+2019-03-26  Said Abou-Hallawa  <sabouhall...@apple.com>
+
+        Unreviewed Windows build fix
+        https://bugs.webkit.org/show_bug.cgi?id=196083
+        <rdar://problem/49121836>
+
+        * svg/SVGAnimatorFactory.h:
+        (WebCore::SVGAnimatorFactory::isSupportedAttributeType):
+
 2019-03-26  Wenson Hsieh  <wenson_hs...@apple.com>
 
         [Cocoa] Refactor some helper functions for building UserAgent strings

Modified: trunk/Source/WebCore/svg/SVGAnimatorFactory.h (243531 => 243532)


--- trunk/Source/WebCore/svg/SVGAnimatorFactory.h	2019-03-27 00:55:19 UTC (rev 243531)
+++ trunk/Source/WebCore/svg/SVGAnimatorFactory.h	2019-03-27 01:05:32 UTC (rev 243532)
@@ -47,12 +47,14 @@
         case AnimatedRect:
         case AnimatedString:
         case AnimatedUnknown:
-            return false;
+            break;
 
         case AnimatedPath:
         case AnimatedTransformList:
             return true;
         }
+
+        return false;
     }
 
     static std::unique_ptr<SVGAnimatedTypeAnimator> create(SVGAnimationElement* animationElement, SVGElement* contextElement, AnimatedPropertyType attributeType)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to