Changeset 179074 in webkit


Ignore:
Timestamp:
Jan 24, 2015 4:08:01 PM (9 years ago)
Author:
Brent Fulgham
Message:

DumpRenderTree needs to run with Windows native controls on Windows
https://bugs.webkit.org/show_bug.cgi?id=25592

Reviewed by Anders Carlsson.

  • DumpRenderTree/win/DumpRenderTree.cpp:

(resetWebPreferencesToConsistentValues): Tell DRT to use native controls.
(prepareConsistentTestingEnvironment): Ditto.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r179046 r179074  
     12015-01-24  Brent Fulgham  <bfulgham@apple.com>
     2
     3        DumpRenderTree needs to run with Windows native controls on Windows
     4        https://bugs.webkit.org/show_bug.cgi?id=25592
     5
     6        Reviewed by Anders Carlsson.
     7
     8        * DumpRenderTree/win/DumpRenderTree.cpp:
     9        (resetWebPreferencesToConsistentValues): Tell DRT to use native controls.
     10        (prepareConsistentTestingEnvironment): Ditto.
     11
    1122015-01-23  David Kilzer  <ddkilzer@apple.com>
    213
  • trunk/Tools/DumpRenderTree/win/DumpRenderTree.cpp

    r178965 r179074  
    839839    // Set uses HTML5 parser quirks: NO
    840840    // Async spellcheck: NO
    841     prefsPrivate->setShouldPaintNativeControls(TRUE); // FIXME - need to make DRT pass with Windows native controls <http://bugs.webkit.org/show_bug.cgi?id=25592>
     841    prefsPrivate->setShouldPaintNativeControls(TRUE);
    842842    prefsPrivate->setMockScrollbarsEnabled(TRUE);
    843843
     
    13781378    standardPreferences->setAutosaves(FALSE);
    13791379
    1380     // FIXME - need to make DRT pass with Windows native controls <http://bugs.webkit.org/show_bug.cgi?id=25592>
    1381     standardPreferencesPrivate->setShouldPaintNativeControls(FALSE);
     1380    standardPreferencesPrivate->setShouldPaintNativeControls(TRUE);
    13821381    standardPreferences->setJavaScriptEnabled(TRUE);
    13831382    standardPreferences->setDefaultFontSize(16);
Note: See TracChangeset for help on using the changeset viewer.