Changeset 141306 in webkit


Ignore:
Timestamp:
Jan 30, 2013 2:17:30 PM (11 years ago)
Author:
rniwa@webkit.org
Message:

Apple's internal PLT test suite doesn't finish after r141136
https://bugs.webkit.org/show_bug.cgi?id=108380

Reviewed by Alexey Proskuryakov.

Temporarily disable the feature to see if that fixes it.

  • loader/cache/CachedResourceLoader.cpp:

(WebCore::CachedResourceLoader::requestResource):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r141304 r141306  
     12013-01-30  Ryosuke Niwa  <rniwa@webkit.org>
     2
     3        Apple's internal PLT test suite doesn't finish after r141136
     4        https://bugs.webkit.org/show_bug.cgi?id=108380
     5
     6        Reviewed by Alexey Proskuryakov.
     7
     8        Temporarily disable the feature to see if that fixes it.
     9
     10        * loader/cache/CachedResourceLoader.cpp:
     11        (WebCore::CachedResourceLoader::requestResource):
     12
    1132013-01-30  Florin Malita  <fmalita@chromium.org>
    214
  • trunk/Source/WebCore/loader/cache/CachedResourceLoader.cpp

    r141136 r141306  
    478478    }
    479479
    480 #if PLATFORM(CHROMIUM)
     480#if PLATFORM(CHROMIUM) || PLATFORM(MAC)
    481481    // FIXME: Temporarily leave main resource caching disabled for chromium, see https://bugs.webkit.org/show_bug.cgi?id=107962
    482482    // Ensure main resources aren't preloaded, and other main resource loads are removed from cache to prevent reuse.
     483    // FIXME: Temporarily leave main resource caching disabled on Mac port per webkit.org/b/108380 until we track down the root cause.
    483484    if (type == CachedResource::MainResource) {
    484485        ASSERT(policy != Use);
Note: See TracChangeset for help on using the changeset viewer.