Title: [129885] trunk/Tools
Revision
129885
Author
[email protected]
Date
2012-09-28 06:38:08 -0700 (Fri, 28 Sep 2012)

Log Message

[EFL][DRT] EFL's layoutTestController.keepWebHistory should enable visited links tracking
https://bugs.webkit.org/show_bug.cgi?id=97901

Patch by Mikhail Pozdnyakov <[email protected]> on 2012-09-28
Reviewed by Kenneth Rohde Christiansen.

EFL's DRT testRunner.keepWebHistory should enable visited links tracking in order
to be consistent with WTR implementation and also several tests rely on that (fast/history).

* DumpRenderTree/efl/TestRunnerEfl.cpp:
(TestRunner::keepWebHistory):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (129884 => 129885)


--- trunk/Tools/ChangeLog	2012-09-28 13:29:59 UTC (rev 129884)
+++ trunk/Tools/ChangeLog	2012-09-28 13:38:08 UTC (rev 129885)
@@ -1,5 +1,18 @@
 2012-09-28  Mikhail Pozdnyakov  <[email protected]>
 
+        [EFL][DRT] EFL's layoutTestController.keepWebHistory should enable visited links tracking
+        https://bugs.webkit.org/show_bug.cgi?id=97901
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        EFL's DRT testRunner.keepWebHistory should enable visited links tracking in order
+        to be consistent with WTR implementation and also several tests rely on that (fast/history).
+
+        * DumpRenderTree/efl/TestRunnerEfl.cpp:
+        (TestRunner::keepWebHistory):
+
+2012-09-28  Mikhail Pozdnyakov  <[email protected]>
+
         [EFL][DRT] EFL DRT should disable visited links tracking by default
         https://bugs.webkit.org/show_bug.cgi?id=97881
 

Modified: trunk/Tools/DumpRenderTree/efl/TestRunnerEfl.cpp (129884 => 129885)


--- trunk/Tools/DumpRenderTree/efl/TestRunnerEfl.cpp	2012-09-28 13:29:59 UTC (rev 129884)
+++ trunk/Tools/DumpRenderTree/efl/TestRunnerEfl.cpp	2012-09-28 13:38:08 UTC (rev 129885)
@@ -109,7 +109,7 @@
 
 void TestRunner::keepWebHistory()
 {
-    notImplemented();
+    DumpRenderTreeSupportEfl::setShouldTrackVisitedLinks(true);
 }
 
 JSValueRef TestRunner::computedStyleIncludingVisitedInfo(JSContextRef context, JSValueRef value)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to