Changeset 267431 in webkit
- Timestamp:
- Sep 22, 2020, 12:18:17 PM (6 years ago)
- Location:
- trunk/Source/WebKit
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
UIProcess/WebPageProxy.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/ChangeLog
r267427 r267431 1 2020-09-22 Lauro Moura <lmoura@igalia.com> 2 3 [GTK] REGRESSION(r267398): several hidpi tests are failing 4 https://bugs.webkit.org/show_bug.cgi?id=216830 5 6 Reviewed by Adrian Perez de Castro. 7 8 * UIProcess/WebPageProxy.cpp: 9 (WebKit::WebPageProxy::setCustomDeviceScaleFactor): Remove check for removed define. 10 1 11 2020-09-22 Peng Liu <peng.liu6@apple.com> 2 12 -
trunk/Source/WebKit/UIProcess/WebPageProxy.cpp
r267344 r267431 3754 3754 void WebPageProxy::setCustomDeviceScaleFactor(float customScaleFactor) 3755 3755 { 3756 // FIXME: Remove this once we bump cairo requirements to support HiDPI.3757 // https://bugs.webkit.org/show_bug.cgi?id=1333783758 #if USE(CAIRO) && !HAVE(CAIRO_SURFACE_SET_DEVICE_SCALE)3759 return;3760 #endif3761 3762 3756 if (m_customDeviceScaleFactor && m_customDeviceScaleFactor.value() == customScaleFactor) 3763 3757 return;
Note:
See TracChangeset
for help on using the changeset viewer.