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

Changeset 277319 in webkit


Ignore:
Timestamp:
May 11, 2021, 3:39:39 AM (5 years ago)
Author:
Diego Pino Garcia
Message:

[GTK] compositing/overflow/dynamic-composited-scrolling-status.html is failing
https://bugs.webkit.org/show_bug.cgi?id=225644

Reviewed by Carlos Garcia Campos.

The test started failing in r277258, which makes WebKitGTK to use
always async scrolling in AC mode. After this change, WebKitTestRunner
should always enable AsyncOverflowScrolling.

  • WebKitTestRunner/gtk/TestControllerGtk.cpp:

(WTR::TestController::platformSpecificFeatureDefaultsForTest const): Enable AsyncOverflowScrolling.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r277318 r277319  
     12021-05-11  Diego Pino Garcia  <dpino@igalia.com>
     2
     3        [GTK] compositing/overflow/dynamic-composited-scrolling-status.html is failing
     4        https://bugs.webkit.org/show_bug.cgi?id=225644
     5
     6        Reviewed by Carlos Garcia Campos.
     7
     8        The test started failing in r277258, which makes WebKitGTK to use
     9        always async scrolling in AC mode. After this change, WebKitTestRunner
     10        should always enable AsyncOverflowScrolling.
     11
     12        * WebKitTestRunner/gtk/TestControllerGtk.cpp:
     13        (WTR::TestController::platformSpecificFeatureDefaultsForTest const): Enable AsyncOverflowScrolling.
     14
    1152021-05-11  Angelos Oikonomopoulos  <angelos@igalia.com>
    216
  • trunk/Tools/WebKitTestRunner/gtk/TestControllerGtk.cpp

    r275810 r277319  
    156156TestFeatures TestController::platformSpecificFeatureDefaultsForTest(const TestCommand&) const
    157157{
    158     return { };
     158    TestFeatures features;
     159    features.boolWebPreferenceFeatures.insert({ "AsyncOverflowScrollingEnabled", true });
     160    return features;
    159161}
    160162
Note: See TracChangeset for help on using the changeset viewer.