Changeset 95544 in webkit


Ignore:
Timestamp:
Sep 20, 2011 8:46:29 AM (13 years ago)
Author:
Csaba Osztrogonác
Message:

Unreviewed, rolling out r95526 and r95541.
http://trac.webkit.org/changeset/95526
http://trac.webkit.org/changeset/95541
https://bugs.webkit.org/show_bug.cgi?id=68443

It broke 6 tests (Requested by ossy_ on #webkit).

Patch by Sheriff Bot <webkit.review.bot@gmail.com> on 2011-09-20

  • DumpRenderTree/qt/main.cpp:

(main):

  • WebKitTestRunner/InjectedBundle/qt/ActivateFontsQt.cpp:

(WTR::activateFonts):

Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r95543 r95544  
     12011-09-20  Sheriff Bot  <webkit.review.bot@gmail.com>
     2
     3        Unreviewed, rolling out r95526 and r95541.
     4        http://trac.webkit.org/changeset/95526
     5        http://trac.webkit.org/changeset/95541
     6        https://bugs.webkit.org/show_bug.cgi?id=68443
     7
     8        It broke 6 tests (Requested by ossy_ on #webkit).
     9
     10        * DumpRenderTree/qt/main.cpp:
     11        (main):
     12        * WebKitTestRunner/InjectedBundle/qt/ActivateFontsQt.cpp:
     13        (WTR::activateFonts):
     14
    1152011-09-20  Tom Zakrajsek  <tomz@codeaurora.org>
    216
  • trunk/Tools/DumpRenderTree/qt/main.cpp

    r95541 r95544  
    145145    QApplication::setStyle(new QWindowsStyle);
    146146
     147    QFont f("Sans Serif");
     148    f.setPointSize(9);
     149    f.setWeight(QFont::Normal);
     150    f.setStyle(QFont::StyleNormal);
     151    QApplication::setFont(f);
     152
    147153    QApplication app(argc, argv);
    148 
    149154#ifdef Q_WS_X11
    150155    QX11Info::setAppDpiY(0, 96);
  • trunk/Tools/WebKitTestRunner/InjectedBundle/qt/ActivateFontsQt.cpp

    r95541 r95544  
    9191    QApplication::setStyle(new QWindowsStyle);
    9292
     93    QFont f(QLatin1String("Sans Serif"));
     94    f.setPointSize(9);
     95    f.setWeight(QFont::Normal);
     96    f.setStyle(QFont::StyleNormal);
     97    QApplication::setFont(f);
     98
    9399#if defined(Q_WS_X11)
    94100    QX11Info::setAppDpiX(0, 96);
Note: See TracChangeset for help on using the changeset viewer.