Changeset 104910 in webkit


Ignore:
Timestamp:
Jan 13, 2012 1:41:34 AM (12 years ago)
Author:
Csaba Osztrogonác
Message:

[Qt][WK2]REGRESSION(r104881):It broke hundreds of tests
https://bugs.webkit.org/show_bug.cgi?id=76247

Reviewed by Kenneth Rohde Christiansen.

  • WebKitTestRunner/TestController.cpp:

(WTR::TestController::resetStateToConsistentValues): Disable mock scrollbars on Qt by default. (workaround)

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r104902 r104910  
     12012-01-13  Csaba Osztrogonác  <ossy@webkit.org>
     2
     3        [Qt][WK2]REGRESSION(r104881):It broke hundreds of tests
     4        https://bugs.webkit.org/show_bug.cgi?id=76247
     5
     6        Reviewed by Kenneth Rohde Christiansen.
     7
     8        * WebKitTestRunner/TestController.cpp:
     9        (WTR::TestController::resetStateToConsistentValues): Disable mock scrollbars on Qt by default. (workaround)
     10
    1112012-01-13  Hajime Morrita  <morrita@chromium.org>
    212
  • trunk/Tools/WebKitTestRunner/TestController.cpp

    r104881 r104910  
    428428    WKPreferencesSetFullScreenEnabled(preferences, true);
    429429#endif
     430
     431// [Qt][WK2]REGRESSION(r104881):It broke hundreds of tests
     432// FIXME: https://bugs.webkit.org/show_bug.cgi?id=76247
     433#if !PLATFORM(QT)
    430434    WKPreferencesSetMockScrollbarsEnabled(preferences, true);
     435#endif
    431436
    432437#if !PLATFORM(QT)
Note: See TracChangeset for help on using the changeset viewer.