Changeset 183865 in webkit


Ignore:
Timestamp:
May 6, 2015 2:12:39 AM (9 years ago)
Author:
Carlos Garcia Campos
Message:

[GTK][WK2] The WebKit network disk cache is not enabled
https://bugs.webkit.org/show_bug.cgi?id=142821

Reviewed by Martin Robinson.

Source/WebKit2:

Enable NetworkCache for the GTK+ port.

  • config.h:

LayoutTests:

Unskip http/tests/cache/disk-cache tests.

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

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r183862 r183865  
     12015-05-05  Carlos Garcia Campos  <cgarcia@igalia.com>
     2
     3        [GTK][WK2] The WebKit network disk cache is not enabled
     4        https://bugs.webkit.org/show_bug.cgi?id=142821
     5
     6        Reviewed by Martin Robinson.
     7
     8        Unskip http/tests/cache/disk-cache tests.
     9
     10        * platform/gtk/TestExpectations:
     11
    1122015-05-05  Nikita Vasilyev  <nvasilyev@apple.com>
    213
  • trunk/LayoutTests/platform/gtk/TestExpectations

    r183842 r183865  
    480480webkit.org/b/128172 fast/events/touch/touch-target-limited.html [ Crash Timeout ]
    481481webkit.org/b/128172 fast/events/touch/send-oncancel-event.html [ Timeout ]
    482 
    483 # The WebKit network disk cache is not enabled on the GTK port.
    484 webkit.org/b/142821 http/tests/cache/disk-cache [ Skip ]
    485482
    486483# HighDPI support is not enabled
  • trunk/Source/WebKit2/ChangeLog

    r183864 r183865  
     12015-05-05  Carlos Garcia Campos  <cgarcia@igalia.com>
     2
     3        [GTK][WK2] The WebKit network disk cache is not enabled
     4        https://bugs.webkit.org/show_bug.cgi?id=142821
     5
     6        Reviewed by Martin Robinson.
     7
     8        Enable NetworkCache for the GTK+ port.
     9
     10        * config.h:
     11
    1122015-05-06  Ryuan Choi  <ryuan.choi@navercorp.com>
    213
  • trunk/Source/WebKit2/config.h

    r182219 r183865  
    8383
    8484#ifndef ENABLE_NETWORK_CACHE
    85 #if ENABLE(NETWORK_PROCESS) && PLATFORM(COCOA)
     85#if ENABLE(NETWORK_PROCESS) && (PLATFORM(COCOA) || PLATFORM(GTK))
    8686#define ENABLE_NETWORK_CACHE 1
    8787#else
Note: See TracChangeset for help on using the changeset viewer.