Title: [267431] trunk/Source/WebKit
Revision
267431
Author
[email protected]
Date
2020-09-22 12:18:17 -0700 (Tue, 22 Sep 2020)

Log Message

[GTK] REGRESSION(r267398): several hidpi tests are failing
https://bugs.webkit.org/show_bug.cgi?id=216830

Reviewed by Adrian Perez de Castro.

* UIProcess/WebPageProxy.cpp:
(WebKit::WebPageProxy::setCustomDeviceScaleFactor): Remove check for removed define.

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (267430 => 267431)


--- trunk/Source/WebKit/ChangeLog	2020-09-22 19:08:42 UTC (rev 267430)
+++ trunk/Source/WebKit/ChangeLog	2020-09-22 19:18:17 UTC (rev 267431)
@@ -1,3 +1,13 @@
+2020-09-22  Lauro Moura  <[email protected]>
+
+        [GTK] REGRESSION(r267398): several hidpi tests are failing
+        https://bugs.webkit.org/show_bug.cgi?id=216830
+
+        Reviewed by Adrian Perez de Castro.
+
+        * UIProcess/WebPageProxy.cpp:
+        (WebKit::WebPageProxy::setCustomDeviceScaleFactor): Remove check for removed define.
+
 2020-09-22  Peng Liu  <[email protected]>
 
         [Media in GPU Process] Add missing IPC message receivers

Modified: trunk/Source/WebKit/UIProcess/WebPageProxy.cpp (267430 => 267431)


--- trunk/Source/WebKit/UIProcess/WebPageProxy.cpp	2020-09-22 19:08:42 UTC (rev 267430)
+++ trunk/Source/WebKit/UIProcess/WebPageProxy.cpp	2020-09-22 19:18:17 UTC (rev 267431)
@@ -3753,12 +3753,6 @@
 
 void WebPageProxy::setCustomDeviceScaleFactor(float customScaleFactor)
 {
-    // FIXME: Remove this once we bump cairo requirements to support HiDPI.
-    // https://bugs.webkit.org/show_bug.cgi?id=133378
-#if USE(CAIRO) && !HAVE(CAIRO_SURFACE_SET_DEVICE_SCALE)
-    return;
-#endif
-
     if (m_customDeviceScaleFactor && m_customDeviceScaleFactor.value() == customScaleFactor)
         return;
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to