Changeset 154027 in webkit


Ignore:
Timestamp:
Aug 13, 2013 3:48:43 PM (11 years ago)
Author:
ap@apple.com
Message:

[Mac] fast/dom/attr-style-too-lazy.html is flaky
https://bugs.webkit.org/show_bug.cgi?id=119763

Reviewed by Darin Adler.

  • DumpRenderTree/mac/UIDelegate.mm:

(-[UIDelegate webView:setStatusText:]): Don't dump anything when not running
a test, it would just semi-randomly leak to the next one.
(-[UIDelegate webView:didPressMissingPluginButton:]): Added same check here, just
for good measure.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r154026 r154027  
     12013-08-13  Alexey Proskuryakov  <ap@apple.com>
     2
     3        [Mac] fast/dom/attr-style-too-lazy.html is flaky
     4        https://bugs.webkit.org/show_bug.cgi?id=119763
     5
     6        Reviewed by Darin Adler.
     7
     8        * DumpRenderTree/mac/UIDelegate.mm:
     9        (-[UIDelegate webView:setStatusText:]): Don't dump anything when not running
     10        a test, it would just semi-randomly leak to the next one.
     11        (-[UIDelegate webView:didPressMissingPluginButton:]): Added same check here, just
     12        for good measure.
     13
    1142013-08-13  Tim Horton  <timothy_horton@apple.com>
    215
  • trunk/Tools/DumpRenderTree/mac/UIDelegate.mm

    r153973 r154027  
    198198- (void)webView:(WebView *)sender setStatusText:(NSString *)text
    199199{
    200     if (gTestRunner->dumpStatusCallbacks())
     200    if (!done && gTestRunner->dumpStatusCallbacks())
    201201        printf("UI DELEGATE STATUS CALLBACK: setStatusText:%s\n", [text UTF8String]);
    202202}
     
    291291- (BOOL)webView:(WebView *)webView didPressMissingPluginButton:(DOMElement *)element
    292292{
    293     printf("MISSING PLUGIN BUTTON PRESSED\n");
     293    if (!done)
     294        printf("MISSING PLUGIN BUTTON PRESSED\n");
    294295    return TRUE;
    295296}
Note: See TracChangeset for help on using the changeset viewer.