Title: [118918] trunk
Revision
118918
Author
[email protected]
Date
2012-05-30 06:55:12 -0700 (Wed, 30 May 2012)

Log Message

[EFL][DRT] EFL's DRT needs "postProgressFinishedNotification" message
https://bugs.webkit.org/show_bug.cgi?id=87833

Patch by Mikhail Pozdnyakov <[email protected]> on 2012-05-30
Reviewed by Tor Arne Vestbø.

Tools:

Print "postProgressFinishedNotification" message if frame load finished
to unskip http/tests/loading/progress-finished-callback.html.

* DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
(DumpRenderTreeChrome::onFrameLoadFinished):

LayoutTests:

* platform/efl/Skipped: Unskipped http/tests/loading/progress-finished-callback.html.

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (118917 => 118918)


--- trunk/LayoutTests/ChangeLog	2012-05-30 13:34:16 UTC (rev 118917)
+++ trunk/LayoutTests/ChangeLog	2012-05-30 13:55:12 UTC (rev 118918)
@@ -1,3 +1,12 @@
+2012-05-30  Mikhail Pozdnyakov  <[email protected]>
+
+        [EFL][DRT] EFL's DRT needs "postProgressFinishedNotification" message
+        https://bugs.webkit.org/show_bug.cgi?id=87833
+
+        Reviewed by Tor Arne Vestbø.
+
+        * platform/efl/Skipped: Unskipped http/tests/loading/progress-finished-callback.html.
+
 2012-05-30  Stephen Chenney  <[email protected]>
 
         [Chromium] Layout Test http/tests/media/media-source/webm/video-media-source-*.html is flaky

Modified: trunk/LayoutTests/platform/efl/Skipped (118917 => 118918)


--- trunk/LayoutTests/platform/efl/Skipped	2012-05-30 13:34:16 UTC (rev 118917)
+++ trunk/LayoutTests/platform/efl/Skipped	2012-05-30 13:55:12 UTC (rev 118918)
@@ -1112,7 +1112,6 @@
 http/tests/cache/subresource-multiple-instances.html
 http/tests/loading/authentication-after-redirect-stores-wrong-credentials/authentication-after-redirect-stores-wrong-credentials.html
 http/tests/loading/nested_bad_objects.php
-http/tests/loading/progress-finished-callback.html
 http/tests/misc/401-alternative-content.php
 http/tests/misc/copy-resolves-urls.html
 http/tests/misc/SVGFont-delayed-load.html

Modified: trunk/Tools/ChangeLog (118917 => 118918)


--- trunk/Tools/ChangeLog	2012-05-30 13:34:16 UTC (rev 118917)
+++ trunk/Tools/ChangeLog	2012-05-30 13:55:12 UTC (rev 118918)
@@ -1,3 +1,16 @@
+2012-05-30  Mikhail Pozdnyakov  <[email protected]>
+
+        [EFL][DRT] EFL's DRT needs "postProgressFinishedNotification" message
+        https://bugs.webkit.org/show_bug.cgi?id=87833
+
+        Reviewed by Tor Arne Vestbø.
+
+        Print "postProgressFinishedNotification" message if frame load finished 
+        to unskip http/tests/loading/progress-finished-callback.html.
+
+        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
+        (DumpRenderTreeChrome::onFrameLoadFinished):
+
 2012-05-30  Mariusz Grzegorczyk  <[email protected]>, Ryuan Choi  <[email protected]>
 
         [EFL][WK2] Fix WebKit2-EFL build

Modified: trunk/Tools/DumpRenderTree/efl/DumpRenderTreeChrome.cpp (118917 => 118918)


--- trunk/Tools/DumpRenderTree/efl/DumpRenderTreeChrome.cpp	2012-05-30 13:34:16 UTC (rev 118917)
+++ trunk/Tools/DumpRenderTree/efl/DumpRenderTreeChrome.cpp	2012-05-30 13:55:12 UTC (rev 118918)
@@ -581,6 +581,9 @@
     if (error)
         return;
 
+    if (!done && gLayoutTestController->dumpProgressFinishedCallback())
+        printf("postProgressFinishedNotification\n");
+
     if (!done && gLayoutTestController->dumpFrameLoadCallbacks()) {
         const String frameName(DumpRenderTreeSupportEfl::suitableDRTFrameName(frame));
         printf("%s - didFinishLoadForFrame\n", frameName.utf8().data());
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to