Changeset 51293 in webkit


Ignore:
Timestamp:
Nov 22, 2009 7:16:31 AM (14 years ago)
Author:
eric@webkit.org
Message:

2009-11-22 Jakub Wieczorek <faw217@gmail.com>

Reviewed by Kenneth Rohde Christiansen.

[Qt] Fix the timeout of fast/frames/frame-navigation.html
https://bugs.webkit.org/show_bug.cgi?id=31638

The test is timeouting, because it uses the WorkQueue to load a document in one
of the child frames and once the loading is finished, the DRT does not dump the
tree. This is because it waits for the QWebFrame::loadFinished() signal from
the main frame, while it should connect to QWebPage::loadFinished().

  • DumpRenderTree/qt/DumpRenderTree.cpp: (WebCore::DumpRenderTree::DumpRenderTree):
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r51287 r51293  
     12009-11-22  Jakub Wieczorek  <faw217@gmail.com>
     2
     3        Reviewed by Kenneth Rohde Christiansen.
     4
     5        [Qt] Fix the timeout of fast/frames/frame-navigation.html
     6        https://bugs.webkit.org/show_bug.cgi?id=31638
     7
     8        The test is timeouting, because it uses the WorkQueue to load a document in one
     9        of the child frames and once the loading is finished, the DRT does not dump the
     10        tree. This is because it waits for the QWebFrame::loadFinished() signal from
     11        the main frame, while it should connect to QWebPage::loadFinished().
     12
     13        * DumpRenderTree/qt/DumpRenderTree.cpp:
     14        (WebCore::DumpRenderTree::DumpRenderTree):
     15
    1162009-11-21  Eric Seidel  <eric@webkit.org>
    217
  • trunk/WebKitTools/DumpRenderTree/qt/DumpRenderTree.cpp

    r51187 r51293  
    267267    connectFrame(m_page->mainFrame());
    268268
    269     connect(m_page->mainFrame(), SIGNAL(loadFinished(bool)),
     269    connect(m_page, SIGNAL(loadFinished(bool)),
    270270            m_controller, SLOT(maybeDump(bool)));
    271271
Note: See TracChangeset for help on using the changeset viewer.