Title: [114901] trunk
Revision
114901
Author
commit-qu...@webkit.org
Date
2012-04-23 08:05:17 -0700 (Mon, 23 Apr 2012)

Log Message

[EFL][DRT] Need to support requestAnimationFrame
https://bugs.webkit.org/show_bug.cgi?id=84585

Patch by Dominik Röttsches <dominik.rottsc...@linux.intel.com> on 2012-04-23
Reviewed by Martin Robinson.

Tools:

Making requestAnimationFrame() support a default on the EFL build.

* Scripts/build-webkit:

LayoutTests:

Unskipping cases related to requestAnimationFrame().
Moving leftover cases to test_expectations.txt for separate
analysis.

* platform/efl/Skipped:
* platform/efl/test_expectations.txt:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (114900 => 114901)


--- trunk/LayoutTests/ChangeLog	2012-04-23 14:56:40 UTC (rev 114900)
+++ trunk/LayoutTests/ChangeLog	2012-04-23 15:05:17 UTC (rev 114901)
@@ -1,3 +1,17 @@
+2012-04-23  Dominik Röttsches  <dominik.rottsc...@linux.intel.com>
+
+        [EFL][DRT] Need to support requestAnimationFrame
+        https://bugs.webkit.org/show_bug.cgi?id=84585
+
+        Reviewed by Martin Robinson.
+
+        Unskipping cases related to requestAnimationFrame().
+        Moving leftover cases to test_expectations.txt for separate
+        analysis.
+
+        * platform/efl/Skipped:
+        * platform/efl/test_expectations.txt:
+
 2012-04-23  Mikhail Naganov  <mnaga...@chromium.org>
 
         [Chromium] Unreviewed test expectations update.

Modified: trunk/LayoutTests/platform/efl/Skipped (114900 => 114901)


--- trunk/LayoutTests/platform/efl/Skipped	2012-04-23 14:56:40 UTC (rev 114900)
+++ trunk/LayoutTests/platform/efl/Skipped	2012-04-23 15:05:17 UTC (rev 114901)
@@ -816,11 +816,6 @@
 fast/dom/HTMLAnchorElement/anchor-nodownload-set.html
 fast/dom/HTMLAnchorElement/anchor-nodownload.html
 
-# The EFL port has no support for webkitRequestAnimationFrame
-animations/animation-api-1.html
-animations/stop-animation-on-suspend.html
-fast/animation
-
 # The EFL port has no support for the FileSystem API
 fast/filesystem
 http/tests/filesystem

Modified: trunk/LayoutTests/platform/efl/test_expectations.txt (114900 => 114901)


--- trunk/LayoutTests/platform/efl/test_expectations.txt	2012-04-23 14:56:40 UTC (rev 114900)
+++ trunk/LayoutTests/platform/efl/test_expectations.txt	2012-04-23 15:05:17 UTC (rev 114901)
@@ -150,3 +150,11 @@
 // Missing execCommand('copy') and execCommand('paste').
 BUGWK84338 : fast/events/clipboard-dataTransferItemList.html = TIMEOUT
 
+// Missing showModalDialog implementation
+BUGWK84589 : fast/animation/request-animation-frame-during-modal.html = TEXT
+
+// Issue with timing for suspend/resumeAnimations()?
+BUGWK84592 : animations/stop-animation-on-suspend.html = TEXT
+
+// Animation API not available.
+BUGWK84593 : animations/animation-api-1.html = TEXT

Modified: trunk/Tools/ChangeLog (114900 => 114901)


--- trunk/Tools/ChangeLog	2012-04-23 14:56:40 UTC (rev 114900)
+++ trunk/Tools/ChangeLog	2012-04-23 15:05:17 UTC (rev 114901)
@@ -1,3 +1,14 @@
+2012-04-23  Dominik Röttsches  <dominik.rottsc...@linux.intel.com>
+
+        [EFL][DRT] Need to support requestAnimationFrame
+        https://bugs.webkit.org/show_bug.cgi?id=84585
+
+        Reviewed by Martin Robinson.
+
+        Making requestAnimationFrame() support a default on the EFL build.
+
+        * Scripts/build-webkit:
+
 2012-04-23  Balazs Kelemen  <kbal...@webkit.org>
 
         [Qt] Add desktop zooming support for QQuickWebView

Modified: trunk/Tools/Scripts/build-webkit (114900 => 114901)


--- trunk/Tools/Scripts/build-webkit	2012-04-23 14:56:40 UTC (rev 114900)
+++ trunk/Tools/Scripts/build-webkit	2012-04-23 15:05:17 UTC (rev 114901)
@@ -146,7 +146,7 @@
 
 my @features = (
     { option => "request-animation-frame", desc => "Toggle requestAnimationFrame support",
-      define => "ENABLE_REQUEST_ANIMATION_FRAME", default => (isAppleMacWebKit() || isGtk() || isBlackBerry()), value => \$requestAnimationFrameSupport },
+      define => "ENABLE_REQUEST_ANIMATION_FRAME", default => (isAppleMacWebKit() || isGtk() || isEfl() || isBlackBerry()), value => \$requestAnimationFrameSupport },
 
     { option => "download-attribute", desc => "Toggle download attribute support",
       define => "ENABLE_DOWNLOAD_ATTRIBUTE", default => isBlackBerry(), value =>\$downloadAttributeSupport },
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to