Title: [181658] trunk/Source/WebCore
Revision
181658
Author
[email protected]
Date
2015-03-17 12:58:15 -0700 (Tue, 17 Mar 2015)

Log Message

Implement Scroll Container Animation Triggers
https://bugs.webkit.org/show_bug.cgi?id=142732

Attempt to fix the build.

* css/CSSComputedStyleDeclaration.cpp: Add an #if ENABLE guard.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (181657 => 181658)


--- trunk/Source/WebCore/ChangeLog	2015-03-17 19:39:54 UTC (rev 181657)
+++ trunk/Source/WebCore/ChangeLog	2015-03-17 19:58:15 UTC (rev 181658)
@@ -72,6 +72,15 @@
         Implement Scroll Container Animation Triggers
         https://bugs.webkit.org/show_bug.cgi?id=142732
 
+        Attempt to fix the build.
+
+        * css/CSSComputedStyleDeclaration.cpp: Add an #if ENABLE guard.
+
+2015-03-17  Dean Jackson  <[email protected]>
+
+        Implement Scroll Container Animation Triggers
+        https://bugs.webkit.org/show_bug.cgi?id=142732
+
         Reviewed by Simon Fraser.
 
         Test: animations/trigger-container-scroll-simple.html

Modified: trunk/Source/WebCore/css/CSSComputedStyleDeclaration.cpp (181657 => 181658)


--- trunk/Source/WebCore/css/CSSComputedStyleDeclaration.cpp	2015-03-17 19:39:54 UTC (rev 181657)
+++ trunk/Source/WebCore/css/CSSComputedStyleDeclaration.cpp	2015-03-17 19:58:15 UTC (rev 181658)
@@ -245,7 +245,9 @@
     CSSPropertyWebkitAnimationName,
     CSSPropertyWebkitAnimationPlayState,
     CSSPropertyWebkitAnimationTimingFunction,
+#if ENABLE(CSS_ANIMATIONS_LEVEL_2)
     CSSPropertyWebkitAnimationTrigger,
+#endif
     CSSPropertyWebkitAppearance,
     CSSPropertyWebkitBackfaceVisibility,
     CSSPropertyWebkitBackgroundClip,
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to