Changeset 116296 in webkit


Ignore:
Timestamp:
May 7, 2012 4:26:33 AM (12 years ago)
Author:
commit-queue@webkit.org
Message:

[EFL] media/video-poster-blocked-by-willsendrequest.html is flaky
https://bugs.webkit.org/show_bug.cgi?id=85609

Patch by Christophe Dumez <Christophe Dumez> on 2012-05-07
Reviewed by Simon Hausmann.

Flakiness was caused by the fact that
media/crash-closing-page-with-media-as-plugin-fallback.html and
media/video-poster-blocked-by-willsendrequest.html use the same PNG
file as poster attribute in the video tag. The PNG file gets cached
when the first test is executed and this somehow causes the second
test to fail.

The flakiness was addressed by clearing the memory and page caches
between tests.

  • DumpRenderTree/efl/DumpRenderTreeChrome.cpp:

(DumpRenderTreeChrome::resetDefaultsToConsistentValues):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r116294 r116296  
     12012-05-07  Christophe Dumez  <christophe.dumez@intel.com>
     2
     3        [EFL] media/video-poster-blocked-by-willsendrequest.html is flaky
     4        https://bugs.webkit.org/show_bug.cgi?id=85609
     5
     6        Reviewed by Simon Hausmann.
     7
     8        Flakiness was caused by the fact that
     9        media/crash-closing-page-with-media-as-plugin-fallback.html and
     10        media/video-poster-blocked-by-willsendrequest.html use the same PNG
     11        file as poster attribute in the video tag. The PNG file gets cached
     12        when the first test is executed and this somehow causes the second
     13        test to fail.
     14
     15        The flakiness was addressed by clearing the memory and page caches
     16        between tests.
     17
     18        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
     19        (DumpRenderTreeChrome::resetDefaultsToConsistentValues):
     20
    1212012-05-07  Eric Seidel  <eric@webkit.org>
    222
  • trunk/Tools/DumpRenderTree/efl/DumpRenderTreeChrome.cpp

    r116158 r116296  
    204204    ewk_settings_web_database_clear();
    205205    ewk_settings_web_database_default_quota_set(5 * 1024 * 1024);
     206
     207    ewk_settings_memory_cache_clear();
    206208
    207209    ewk_view_setting_private_browsing_set(mainView(), EINA_FALSE);
Note: See TracChangeset for help on using the changeset viewer.