Title: [112647] trunk
Revision
112647
Author
[email protected]
Date
2012-03-30 02:46:03 -0700 (Fri, 30 Mar 2012)

Log Message

[EFL] Implement LayoutTestController::setMinimumTimerInterval
https://bugs.webkit.org/show_bug.cgi?id=81220

Tools:

Add missing implementation setMinimumTimerInterval to EFL's
LayoutTestController so that we can unskip related tests from the skip list.

Patch by Sudarsana Nagineni <[email protected]> on 2012-03-30
Reviewed by Philippe Normand.

* DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
(LayoutTestController::setMinimumTimerInterval):

LayoutTests:

Unskip tests connected with setMinimumTimerInterval.

Patch by Sudarsana Nagineni <[email protected]> on 2012-03-30
Reviewed by Philippe Normand.

* platform/efl/Skipped:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (112646 => 112647)


--- trunk/LayoutTests/ChangeLog	2012-03-30 07:45:32 UTC (rev 112646)
+++ trunk/LayoutTests/ChangeLog	2012-03-30 09:46:03 UTC (rev 112647)
@@ -1,3 +1,14 @@
+2012-03-30  Sudarsana Nagineni  <[email protected]>
+
+        [EFL] Implement LayoutTestController::setMinimumTimerInterval
+        https://bugs.webkit.org/show_bug.cgi?id=81220
+
+        Unskip tests connected with setMinimumTimerInterval.
+
+        Reviewed by Philippe Normand.
+
+        * platform/efl/Skipped:
+
 2012-03-30  Philippe Normand  <[email protected]>
 
         Unreviewed, GTK rebaseline after r112582 and r112391.

Modified: trunk/LayoutTests/platform/efl/Skipped (112646 => 112647)


--- trunk/LayoutTests/platform/efl/Skipped	2012-03-30 07:45:32 UTC (rev 112646)
+++ trunk/LayoutTests/platform/efl/Skipped	2012-03-30 09:46:03 UTC (rev 112647)
@@ -749,13 +749,6 @@
 http/tests/local/link-stylesheet-load-order-preload.html
 http/tests/local/link-stylesheet-load-order.html
 
-# EFL's LayoutTestController does not implement setMinimumTimerInterval
-fast/dom/timer-increase-min-interval-and-reset-part-1.html
-fast/dom/timer-increase-min-interval-repeating.html
-fast/dom/timer-increase-min-interval.html
-fast/dom/timer-increase-then-decrease-min-interval-repeating.html
-fast/dom/timer-increase-then-decrease-min-interval.html
-
 # EFL's LayoutTestController does not implement setTextDirection
 fast/html/set-text-direction.html
 

Modified: trunk/Tools/ChangeLog (112646 => 112647)


--- trunk/Tools/ChangeLog	2012-03-30 07:45:32 UTC (rev 112646)
+++ trunk/Tools/ChangeLog	2012-03-30 09:46:03 UTC (rev 112647)
@@ -1,3 +1,16 @@
+2012-03-30  Sudarsana Nagineni  <[email protected]>
+
+        [EFL] Implement LayoutTestController::setMinimumTimerInterval
+        https://bugs.webkit.org/show_bug.cgi?id=81220
+
+        Add missing implementation setMinimumTimerInterval to EFL's
+        LayoutTestController so that we can unskip related tests from the skip list.
+
+        Reviewed by Philippe Normand.
+
+        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
+        (LayoutTestController::setMinimumTimerInterval):
+
 2012-03-29  Dan Bernstein  <[email protected]>
 
         Removed “Intel” from the Lion builders’ names.

Modified: trunk/Tools/DumpRenderTree/efl/LayoutTestControllerEfl.cpp (112646 => 112647)


--- trunk/Tools/DumpRenderTree/efl/LayoutTestControllerEfl.cpp	2012-03-30 07:45:32 UTC (rev 112646)
+++ trunk/Tools/DumpRenderTree/efl/LayoutTestControllerEfl.cpp	2012-03-30 09:46:03 UTC (rev 112647)
@@ -757,9 +757,9 @@
     notImplemented();
 }
 
-void LayoutTestController::setMinimumTimerInterval(double)
+void LayoutTestController::setMinimumTimerInterval(double minimumTimerInterval)
 {
-    notImplemented();
+    ewk_view_setting_minimum_timer_interval_set(browser->mainView(), minimumTimerInterval);
 }
 
 void LayoutTestController::setTextDirection(JSStringRef)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to