Title: [116654] trunk/Source/WebKit2
Revision
116654
Author
[email protected]
Date
2012-05-10 09:45:09 -0700 (Thu, 10 May 2012)

Log Message

[GTK] Test /webkit2/WebKitWebView/resources times out
https://bugs.webkit.org/show_bug.cgi?id=86088

Reviewed by Martin Robinson.

* UIProcess/API/gtk/tests/TestResources.cpp:
(testWebViewResources): Use webkit_web_view_reload_bypass_cache()
instead of webkit_web_view_reload() to make sure resources are not
read from the cache.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (116653 => 116654)


--- trunk/Source/WebKit2/ChangeLog	2012-05-10 16:44:26 UTC (rev 116653)
+++ trunk/Source/WebKit2/ChangeLog	2012-05-10 16:45:09 UTC (rev 116654)
@@ -1,3 +1,15 @@
+2012-05-10  Carlos Garcia Campos  <[email protected]>
+
+        [GTK] Test /webkit2/WebKitWebView/resources times out
+        https://bugs.webkit.org/show_bug.cgi?id=86088
+
+        Reviewed by Martin Robinson.
+
+        * UIProcess/API/gtk/tests/TestResources.cpp:
+        (testWebViewResources): Use webkit_web_view_reload_bypass_cache()
+        instead of webkit_web_view_reload() to make sure resources are not
+        read from the cache.
+
 2012-05-10  Simon Pena  <[email protected]>
 
         [GTK] WK2 misses WebKitSettings for media playback requiring user gestures and inline playback

Modified: trunk/Source/WebKit2/UIProcess/API/gtk/tests/TestResources.cpp (116653 => 116654)


--- trunk/Source/WebKit2/UIProcess/API/gtk/tests/TestResources.cpp	2012-05-10 16:44:26 UTC (rev 116653)
+++ trunk/Source/WebKit2/UIProcess/API/gtk/tests/TestResources.cpp	2012-05-10 16:45:09 UTC (rev 116654)
@@ -207,7 +207,7 @@
 #endif
 
     // Reload.
-    webkit_web_view_reload(test->m_webView);
+    webkit_web_view_reload_bypass_cache(test->m_webView);
     test->waitUntilResourcesLoaded(4);
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to