Changeset 139613 in webkit


Ignore:
Timestamp:
Jan 14, 2013 7:24:56 AM (11 years ago)
Author:
commit-queue@webkit.org
Message:

Web Inspector: devtools front-end doesn't have focus in TestShell
https://bugs.webkit.org/show_bug.cgi?id=106778

Patch by Andrey Lushnikov <lushnikov@chromium.org> on 2013-01-14
Reviewed by Pavel Feldman.

Focus devTools window after loadURL method.

  • DumpRenderTree/chromium/TestShell.cpp:

(TestShell::runFileTest):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r139612 r139613  
     12013-01-14  Andrey Lushnikov  <lushnikov@chromium.org>
     2
     3        Web Inspector: devtools front-end doesn't have focus in TestShell
     4        https://bugs.webkit.org/show_bug.cgi?id=106778
     5
     6        Reviewed by Pavel Feldman.
     7
     8        Focus devTools window after loadURL method.
     9
     10        * DumpRenderTree/chromium/TestShell.cpp:
     11        (TestShell::runFileTest):
     12
    1132013-01-14  Raphael Kubo da Costa  <raphael.kubo.da.costa@intel.com>
    214
  • trunk/Tools/DumpRenderTree/chromium/TestShell.cpp

    r139606 r139613  
    298298    loadURL(m_params.testUrl);
    299299
     300    if (m_devTools)
     301        this->setFocus(m_devTools->webView(), true);
     302
    300303    m_testIsPreparing = false;
    301304    waitTestFinished();
Note: See TracChangeset for help on using the changeset viewer.