Title: [137605] trunk/Source/WebKit2
Revision
137605
Author
[email protected]
Date
2012-12-13 09:41:29 -0800 (Thu, 13 Dec 2012)

Log Message

[EFL] Update the way we set the cookies policy
https://bugs.webkit.org/show_bug.cgi?id=104915

Patch by Thiago Marcos P. Santos <[email protected]> on 2012-12-13
Reviewed by Kenneth Rohde Christiansen.

We are mistakenly assigning the cookie policy to the persistent storage
type which is not correct. This was caused by r137432 and is making
the unit tests fail.

* UIProcess/efl/WebContextEfl.cpp:
(WebKit::WebContext::platformInitializeWebProcess):

Modified Paths

Removed Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (137604 => 137605)


--- trunk/Source/WebKit2/ChangeLog	2012-12-13 17:37:33 UTC (rev 137604)
+++ trunk/Source/WebKit2/ChangeLog	2012-12-13 17:41:29 UTC (rev 137605)
@@ -17,6 +17,17 @@
         [Qt][WK2] Fix painting on Mac with retina display
         https://bugs.webkit.org/show_bug.cgi?id=104574
 
+        Unreviewed, removing leftover API test.
+
+        This hunk somehow did not make it into the final patch.
+
+        * UIProcess/API/qt/tests/qmltests/WebView/tst_devicePixelRatio.qml: Removed.
+
+2012-12-13  Andras Becsi  <[email protected]>
+
+        [Qt][WK2] Fix painting on Mac with retina display
+        https://bugs.webkit.org/show_bug.cgi?id=104574
+
         Reviewed by Kenneth Rohde Christiansen.
 
         Since HiDPI support has been added and enabled in Qt we ended up

Deleted: trunk/Source/WebKit2/UIProcess/API/qt/tests/qmltests/WebView/tst_devicePixelRatio.qml (137604 => 137605)


--- trunk/Source/WebKit2/UIProcess/API/qt/tests/qmltests/WebView/tst_devicePixelRatio.qml	2012-12-13 17:37:33 UTC (rev 137604)
+++ trunk/Source/WebKit2/UIProcess/API/qt/tests/qmltests/WebView/tst_devicePixelRatio.qml	2012-12-13 17:41:29 UTC (rev 137605)
@@ -1,62 +0,0 @@
-import QtQuick 2.0
-import QtTest 1.0
-import QtWebKit 3.0
-import QtWebKit.experimental 1.0
-import "../common"
-
-
-TestWebView {
-    id: webView
-    property variant lastResult
-    width: 400
-    height: 300
-    focus: true
-
-    SignalSpy {
-        id: resultSpy
-        target: webView
-        signalName: "lastResultChanged"
-    }
-
-    TestCase {
-        name: "DevicePixelRatio"
-
-        function init() {
-            resultSpy.clear()
-            webView.lastResult = null
-        }
-
-        function test_devicePixelRatio() {
-            resultSpy.clear()
-            webView.url = ""
-            webView.experimental.devicePixelRatio = 2.0
-            verify(webView.waitForLoadSucceeded())
-
-            webView.experimental.evaluateJavaScript(
-                "(function() { return window.devicePixelRatio })()",
-                function(result) {
-                    webView.lastResult = result
-                })
-
-            resultSpy.wait()
-            compare(webView.lastResult, 2.0)
-            compare(webView.lastResult, webView.experimental.devicePixelRatio)
-        }
-
-        function test_devicePixelRatioMediaQuery() {
-            resultSpy.clear()
-            webView.url = ""
-            webView.experimental.devicePixelRatio = 2.0
-            verify(webView.waitForLoadSucceeded())
-
-            webView.experimental.evaluateJavaScript(
-                "(function() { return window.matchMedia(\"(-webkit-device-pixel-ratio: 2)\").matches })()",
-                function(result) {
-                    webView.lastResult = result
-                })
-
-            resultSpy.wait()
-            verify(webView.lastResult)
-        }
-    }
-}
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to