Title: [163940] trunk/Source/WebCore
Revision
163940
Author
m...@apple.com
Date
2014-02-11 20:36:05 -0800 (Tue, 11 Feb 2014)

Log Message

iOS build fix.

* rendering/RenderElement.cpp:
(WebCore::shouldRepaintForImageAnimation):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (163939 => 163940)


--- trunk/Source/WebCore/ChangeLog	2014-02-12 04:25:46 UTC (rev 163939)
+++ trunk/Source/WebCore/ChangeLog	2014-02-12 04:36:05 UTC (rev 163940)
@@ -1,3 +1,10 @@
+2014-02-11  Dan Bernstein  <m...@apple.com>
+
+        iOS build fix.
+
+        * rendering/RenderElement.cpp:
+        (WebCore::shouldRepaintForImageAnimation):
+
 2014-02-11  David Kilzer  <ddkil...@apple.com>
 
         ContentData equals() methods are not inline-able

Modified: trunk/Source/WebCore/rendering/RenderElement.cpp (163939 => 163940)


--- trunk/Source/WebCore/rendering/RenderElement.cpp	2014-02-12 04:25:46 UTC (rev 163939)
+++ trunk/Source/WebCore/rendering/RenderElement.cpp	2014-02-12 04:36:05 UTC (rev 163940)
@@ -1288,7 +1288,7 @@
     if (frameView.isOffscreen())
         return false;
 #if PLATFORM(IOS)
-    if (frameView.timersPaused())
+    if (document.frame().timersPaused())
         return false;
 #endif
     if (document.activeDOMObjectsAreSuspended())
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to