Title: [150493] trunk/Tools
Revision
150493
Author
[email protected]
Date
2013-05-21 17:25:21 -0700 (Tue, 21 May 2013)

Log Message

REGRESSION(r150369): WebKit2WillLoadTest tests are failing
https://bugs.webkit.org/show_bug.cgi?id=116585

Reviewed by Alexey Proskuryakov.

willLoadURLRequest and willLoadDataRequest require the API version 6.

* TestWebKitAPI/Tests/WebKit2/WillLoad_Bundle.cpp:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (150492 => 150493)


--- trunk/Tools/ChangeLog	2013-05-22 00:07:07 UTC (rev 150492)
+++ trunk/Tools/ChangeLog	2013-05-22 00:25:21 UTC (rev 150493)
@@ -1,5 +1,16 @@
 2013-05-21  Ryosuke Niwa  <[email protected]>
 
+        REGRESSION(r150369): WebKit2WillLoadTest tests are failing
+        https://bugs.webkit.org/show_bug.cgi?id=116585
+
+        Reviewed by Alexey Proskuryakov.
+
+        willLoadURLRequest and willLoadDataRequest require the API version 6.
+
+        * TestWebKitAPI/Tests/WebKit2/WillLoad_Bundle.cpp:
+
+2013-05-21  Ryosuke Niwa  <[email protected]>
+
         REGRESSION(r150393): editing/inserting/typing-at-end-of-line.html fails
         https://bugs.webkit.org/show_bug.cgi?id=116516
 

Modified: trunk/Tools/TestWebKitAPI/Tests/WebKit2/WillLoad_Bundle.cpp (150492 => 150493)


--- trunk/Tools/TestWebKitAPI/Tests/WebKit2/WillLoad_Bundle.cpp	2013-05-22 00:07:07 UTC (rev 150492)
+++ trunk/Tools/TestWebKitAPI/Tests/WebKit2/WillLoad_Bundle.cpp	2013-05-22 00:25:21 UTC (rev 150493)
@@ -70,7 +70,7 @@
         WKBundlePageLoaderClient pageLoaderClient;
         memset(&pageLoaderClient, 0, sizeof(pageLoaderClient));
         
-        pageLoaderClient.version = 5;
+        pageLoaderClient.version = 6;
         pageLoaderClient.clientInfo = this;
         pageLoaderClient.willLoadURLRequest = willLoadURLRequest;
         pageLoaderClient.willLoadDataRequest = willLoadDataRequest;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to