Changeset 200826 in webkit
- Timestamp:
- May 13, 2016, 2:57:43 AM (9 years ago)
- 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 1 2016-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 1 9 2016-04-27 Carlos Garcia Campos <cgarcia@igalia.com> 2 10 -
releases/WebKitGTK/webkit-2.12/Source/WebCore/loader/EmptyClients.cpp
r197311 r200826 29 29 #include "EmptyClients.h" 30 30 31 #include "ApplicationCacheStorage.h" 31 32 #include "ColorChooser.h" 32 33 #include "DatabaseProvider.h" … … 131 132 pageConfiguration.diagnosticLoggingClient = &dummyDiagnosticLoggingClient.get(); 132 133 134 pageConfiguration.applicationCacheStorage = ApplicationCacheStorage::create(String(), String()); 133 135 pageConfiguration.databaseProvider = adoptRef(new EmptyDatabaseProvider); 134 136 pageConfiguration.storageNamespaceProvider = adoptRef(new EmptyStorageNamespaceProvider);
Note:
See TracChangeset
for help on using the changeset viewer.