Changeset 142024 in webkit


Ignore:
Timestamp:
Feb 6, 2013 1:11:35 PM (11 years ago)
Author:
rniwa@webkit.org
Message:

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

Reviewed by Alexey Proskuryakov.

Source/WebCore:

Re-enable the main resource cache since the regression had been fixed in r141615.

  • loader/cache/CachedResourceLoader.cpp:

(WebCore::CachedResourceLoader::requestResource):

LayoutTests:

Re-enable tests that have been temporarily disabled.

  • platform/mac/TestExpectations:
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r142021 r142024  
     12013-02-06  Ryosuke Niwa  <rniwa@webkit.org>
     2
     3        REGRESSION(r141136): Apple's internal PLT test suite doesn't finish
     4        https://bugs.webkit.org/show_bug.cgi?id=108380
     5
     6        Reviewed by Alexey Proskuryakov.
     7
     8        Re-enable tests that have been temporarily disabled.
     9
     10        * platform/mac/TestExpectations:
     11
    1122013-02-06  Uday Kiran  <udaykiran@motorola.com>
    213
  • trunk/LayoutTests/platform/mac/TestExpectations

    r141981 r142024  
    13301330webkit.org/b/108257 [ Debug ] compositing/overflow/composited-scrolling-creates-a-stacking-container.html [ Crash ]
    13311331webkit.org/b/108257 [ Debug ] compositing/overflow/automatically-opt-into-composited-scrolling.html [ Crash ]
    1332 
    1333 webkit.org/b/108380 http/tests/cache/cached-main-resource.html [ Failure ]
    1334 webkit.org/b/108380 http/tests/cache/iframe-304-crash.html [ Failure ]
    1335 webkit.org/b/108380 http/tests/inspector/resource-har-pages.html [ Failure ]
    1336 webkit.org/b/108380 http/tests/loading/redirect-methods.html [ Failure ]
    1337 webkit.org/b/108380 http/tests/misc/link-rel-icon-beforeload.html [ Failure ]
    1338 webkit.org/b/108380 http/tests/misc/favicon-loads-with-images-disabled.html [ Failure ]
  • trunk/Source/WebCore/ChangeLog

    r142021 r142024  
     12013-02-06  Ryosuke Niwa  <rniwa@webkit.org>
     2
     3        REGRESSION(r141136): Apple's internal PLT test suite doesn't finish
     4        https://bugs.webkit.org/show_bug.cgi?id=108380
     5
     6        Reviewed by Alexey Proskuryakov.
     7
     8        Re-enable the main resource cache since the regression had been fixed in r141615.
     9
     10        * loader/cache/CachedResourceLoader.cpp:
     11        (WebCore::CachedResourceLoader::requestResource):
     12
    1132013-02-06  Uday Kiran  <udaykiran@motorola.com>
    214
  • trunk/Source/WebCore/loader/cache/CachedResourceLoader.cpp

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