Changeset 193752 in webkit


Ignore:
Timestamp:
Dec 8, 2015 8:42:01 AM (8 years ago)
Author:
Csaba Osztrogonác
Message:

[EFL] REGRESSION(r173394): MiniBrowser stucked in an infinite loop if NETWORK_CACHE is disabled
https://bugs.webkit.org/show_bug.cgi?id=137692

Reviewed by Darin Adler.

Source/WebKit2:

  • WebProcess/Network/WebLoaderStrategy.cpp:

(WebKit::maximumBufferingTime): Disable caching if NETWORK_CACHE is disabled.

LayoutTests:

  • platform/efl/TestExpectations: Unskip now passing tests.
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r193751 r193752  
     12015-12-08  Csaba Osztrogonác  <ossy@webkit.org>
     2
     3        [EFL] REGRESSION(r173394): MiniBrowser stucked in an infinite loop if NETWORK_CACHE is disabled
     4        https://bugs.webkit.org/show_bug.cgi?id=137692
     5
     6        Reviewed by Darin Adler.
     7
     8        * platform/efl/TestExpectations: Unskip now passing tests.
     9
    1102015-12-08  Gyuyoung Kim  <gyuyoung.kim@webkit.org>
    211
  • trunk/LayoutTests/platform/efl/TestExpectations

    r193751 r193752  
    26942694css2.1/tables/table-anonymous-objects-208.xht [ Missing ]
    26952695
    2696 # EFL layout test has been broken since r192796. SKip web-platform-tests until fixing this problem.
    2697 # http://trac.webkit.org/changeset/192796
    2698 Bug(EFL) imported/w3c/web-platform-tests [ Skip ]
    2699 
    27002696webkit.org/b/151943 imported/blink/editing/execCommand/4128080-2.html [ Failure ]
    27012697webkit.org/b/151943 imported/blink/fast/events/click-with-large-negative-text-indent.html [ Failure ]
  • trunk/Source/WebKit2/ChangeLog

    r193744 r193752  
     12015-12-08  Csaba Osztrogonác  <ossy@webkit.org>
     2
     3        [EFL] REGRESSION(r173394): MiniBrowser stucked in an infinite loop if NETWORK_CACHE is disabled
     4        https://bugs.webkit.org/show_bug.cgi?id=137692
     5
     6        Reviewed by Darin Adler.
     7
     8        * WebProcess/Network/WebLoaderStrategy.cpp:
     9        (WebKit::maximumBufferingTime): Disable caching if NETWORK_CACHE is disabled.
     10
    1112015-12-08  Ryuan Choi  <ryuan.choi@navercorp.com>
    212
  • trunk/Source/WebKit2/WebProcess/Network/WebLoaderStrategy.cpp

    r193468 r193752  
    8787static std::chrono::milliseconds maximumBufferingTime(CachedResource* resource)
    8888{
     89#if !ENABLE(NETWORK_CACHE)
     90    return 0_ms;
     91#endif
     92
    8993    if (!resource)
    9094        return 0_ms;
Note: See TracChangeset for help on using the changeset viewer.