Changeset 218494 in webkit


Ignore:
Timestamp:
Jun 19, 2017 9:34:44 AM (7 years ago)
Author:
pvollan@apple.com
Message:

[Win] fast/dom/assign-to-window-status.html is flaky.
https://bugs.webkit.org/show_bug.cgi?id=173512

Reviewed by Alex Christensen.

We should not dump status callbacks when test is done.

  • DumpRenderTree/win/UIDelegate.cpp:

(UIDelegate::setStatusText):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r218491 r218494  
     12017-06-19  Per Arne Vollan  <pvollan@apple.com>
     2
     3        [Win] fast/dom/assign-to-window-status.html is flaky.
     4        https://bugs.webkit.org/show_bug.cgi?id=173512
     5
     6        Reviewed by Alex Christensen.
     7
     8        We should not dump status callbacks when test is done.
     9
     10        * DumpRenderTree/win/UIDelegate.cpp:
     11        (UIDelegate::setStatusText):
     12
    1132017-06-19  Carlos Alberto Lopez Perez  <clopez@igalia.com>
    214
  • trunk/Tools/DumpRenderTree/win/UIDelegate.cpp

    r210503 r218494  
    659659
    660660HRESULT UIDelegate::setStatusText(_In_opt_ IWebView*, _In_ BSTR text)
    661 { 
    662     if (gTestRunner->dumpStatusCallbacks())
     661{
     662    if (!done && gTestRunner->dumpStatusCallbacks())
    663663        fprintf(testResult, "UI DELEGATE STATUS CALLBACK: setStatusText:%S\n", text ? text : L"");
    664664    return S_OK;
Note: See TracChangeset for help on using the changeset viewer.