Changeset 251719 in webkit


Ignore:
Timestamp:
Oct 29, 2019 12:29:33 PM (4 years ago)
Author:
Kate Cheney
Message:

Layout Test http/tests/resourceLoadStatistics/website-data-removal-for-site-navigated-to-with-link-decoration-database.html is a flaky failure
https://bugs.webkit.org/show_bug.cgi?id=203542#add_comment
<rdar://problem/56689764>

Reviewed by John Wilander.

This test was a flaky failure due to its calling
scheduleStatisticsProcessingRequestIfNecessary() after logging a cross
site load with link decoration. This call is currently unecessary
because this function is not yet used to classify resources, and is
causing the test to execute a callback before it is ready.

  • NetworkProcess/Classifier/ResourceLoadStatisticsDatabaseStore.cpp:
Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r251712 r251719  
     12019-10-29  Kate Cheney  <katherine_cheney@apple.com>
     2
     3        Layout Test http/tests/resourceLoadStatistics/website-data-removal-for-site-navigated-to-with-link-decoration-database.html is a flaky failure
     4        https://bugs.webkit.org/show_bug.cgi?id=203542#add_comment
     5        <rdar://problem/56689764>
     6
     7        Reviewed by John Wilander.
     8
     9        This test was a flaky failure due to its calling
     10        scheduleStatisticsProcessingRequestIfNecessary() after logging a cross
     11        site load with link decoration. This call is currently unecessary
     12        because this function is not yet used to classify resources, and is
     13        causing the test to execute a callback before it is ready.
     14
     15        * NetworkProcess/Classifier/ResourceLoadStatisticsDatabaseStore.cpp:
     16
    1172019-10-29  Truitt Savell  <tsavell@apple.com>
    218
  • trunk/Source/WebKit/NetworkProcess/Classifier/ResourceLoadStatisticsDatabaseStore.cpp

    r251663 r251719  
    14031403    if (isPrevalentResource(fromDomain))
    14041404        setIsScheduledForAllButCookieDataRemoval(toDomain, true);
    1405    
    1406     scheduleStatisticsProcessingRequestIfNecessary();
    14071405}
    14081406
Note: See TracChangeset for help on using the changeset viewer.