Changeset 200826 in webkit


Ignore:
Timestamp:
May 13, 2016, 2:57:43 AM (9 years ago)
Author:
Carlos Garcia Campos
Message:

Merge r199851 - Fix crashes when loading SVG images.

  • loader/EmptyClients.cpp:

(WebCore::fillWithEmptyClients):
Give the SVG page its own application cache storage.

Location:
releases/WebKitGTK/webkit-2.12/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • releases/WebKitGTK/webkit-2.12/Source/WebCore/ChangeLog

    r200176 r200826  
     12016-04-21  Anders Carlsson  <andersca@apple.com>
     2
     3        Fix crashes when loading SVG images.
     4
     5        * loader/EmptyClients.cpp:
     6        (WebCore::fillWithEmptyClients):
     7        Give the SVG page its own application cache storage.
     8
    192016-04-27  Carlos Garcia Campos  <cgarcia@igalia.com>
    210
  • releases/WebKitGTK/webkit-2.12/Source/WebCore/loader/EmptyClients.cpp

    r197311 r200826  
    2929#include "EmptyClients.h"
    3030
     31#include "ApplicationCacheStorage.h"
    3132#include "ColorChooser.h"
    3233#include "DatabaseProvider.h"
     
    131132    pageConfiguration.diagnosticLoggingClient = &dummyDiagnosticLoggingClient.get();
    132133
     134    pageConfiguration.applicationCacheStorage = ApplicationCacheStorage::create(String(), String());
    133135    pageConfiguration.databaseProvider = adoptRef(new EmptyDatabaseProvider);
    134136    pageConfiguration.storageNamespaceProvider = adoptRef(new EmptyStorageNamespaceProvider);
Note: See TracChangeset for help on using the changeset viewer.