Test persistent WKHTTPCookieStorages on iOS
https://bugs.webkit.org/show_bug.cgi?id=173284
<rdar://problem/32260156>

Patch by Alex Christensen <achristensen@webkit.org> on 2017-06-13
Reviewed by Alexey Proskuryakov.

* TestWebKitAPI/Tests/WebKit2Cocoa/WKHTTPCookieStore.mm:
(TEST):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@218195 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/Tools/ChangeLog b/Tools/ChangeLog
index 9cbec77..db560f3 100644
--- a/Tools/ChangeLog
+++ b/Tools/ChangeLog
@@ -1,3 +1,14 @@
+2017-06-13  Alex Christensen  <achristensen@webkit.org>
+
+        Test persistent WKHTTPCookieStorages on iOS
+        https://bugs.webkit.org/show_bug.cgi?id=173284
+        <rdar://problem/32260156>
+
+        Reviewed by Alexey Proskuryakov.
+
+        * TestWebKitAPI/Tests/WebKit2Cocoa/WKHTTPCookieStore.mm:
+        (TEST):
+
 2017-06-13  Carlos Garcia Campos  <cgarcia@igalia.com>
 
         [GTK] Blob download doesn't work
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2Cocoa/WKHTTPCookieStore.mm b/Tools/TestWebKitAPI/Tests/WebKit2Cocoa/WKHTTPCookieStore.mm
index 21c7b6c..23ebd2b 100644
--- a/Tools/TestWebKitAPI/Tests/WebKit2Cocoa/WKHTTPCookieStore.mm
+++ b/Tools/TestWebKitAPI/Tests/WebKit2Cocoa/WKHTTPCookieStore.mm
@@ -203,8 +203,6 @@
     }];
     TestWebKitAPI::Util::run(&finished);
     
-    // FIXME: Investigate why this doesn't work on iOS with the default persistent storage. rdar://problem/32260156
-#if !PLATFORM(IOS)
     finished = false;
     WKWebsiteDataStore *defaultStore = [WKWebsiteDataStore defaultDataStore];
     [defaultStore.httpCookieStore setCookie:cookie completionHandler:^ {
@@ -228,6 +226,5 @@
         }];
     }];
     TestWebKitAPI::Util::run(&finished);
-#endif
 }
 #endif