Changeset 277319 in webkit
- Timestamp:
- May 11, 2021, 3:39:39 AM (5 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
WebKitTestRunner/gtk/TestControllerGtk.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r277318 r277319 1 2021-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 1 15 2021-05-11 Angelos Oikonomopoulos <angelos@igalia.com> 2 16 -
trunk/Tools/WebKitTestRunner/gtk/TestControllerGtk.cpp
r275810 r277319 156 156 TestFeatures TestController::platformSpecificFeatureDefaultsForTest(const TestCommand&) const 157 157 { 158 return { }; 158 TestFeatures features; 159 features.boolWebPreferenceFeatures.insert({ "AsyncOverflowScrollingEnabled", true }); 160 return features; 159 161 } 160 162
Note:
See TracChangeset
for help on using the changeset viewer.