⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 267431 in webkit


Ignore:
Timestamp:
Sep 22, 2020, 12:18:17 PM (6 years ago)
Author:
Lauro Moura
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.

Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r267427 r267431  
     12020-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
    1112020-09-22  Peng Liu  <peng.liu6@apple.com>
    212
  • trunk/Source/WebKit/UIProcess/WebPageProxy.cpp

    r267344 r267431  
    37543754void WebPageProxy::setCustomDeviceScaleFactor(float customScaleFactor)
    37553755{
    3756     // FIXME: Remove this once we bump cairo requirements to support HiDPI.
    3757     // https://bugs.webkit.org/show_bug.cgi?id=133378
    3758 #if USE(CAIRO) && !HAVE(CAIRO_SURFACE_SET_DEVICE_SCALE)
    3759     return;
    3760 #endif
    3761 
    37623756    if (m_customDeviceScaleFactor && m_customDeviceScaleFactor.value() == customScaleFactor)
    37633757        return;
Note: See TracChangeset for help on using the changeset viewer.