Reviewed by Adam.
- Added tests for regressions in other components. In this case we also need to add a skipped list for Tiger since this functionality didn't exist in 10.4.
* fast/cookies: Added.
* fast/cookies/local-file-can-set-cookies-expected.txt: Added.
* fast/cookies/local-file-can-set-cookies.html: Added.
* platform/mac-tiger: Added.
* platform/mac-tiger/Skipped: Added.
WebKitTools:
Reviewed by Adam.
- Added tests for regressions in other components. In this case we also need to add a skipped list for Tiger since this functionality didn't exist in 10.4.
* Scripts/run-webkit-tests:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@25110
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2007-08-16 Kevin McCullough <kmccullough@apple.com>
+
+ Reviewed by Adam.
+
+ - Added tests for regressions in other components. In this case we also need to add a skipped list for Tiger since this functionality didn't exist in 10.4.
+
+ * fast/cookies: Added.
+ * fast/cookies/local-file-can-set-cookies-expected.txt: Added.
+ * fast/cookies/local-file-can-set-cookies.html: Added.
+ * platform/mac-tiger: Added.
+ * platform/mac-tiger/Skipped: Added.
+
2007-08-16 Justin Garcia <justin.garcia@apple.com>
Reviewed by Maciej.
--- /dev/null
+This test checks that a local file can set cookies. See: rdar://problem/5379090 REGRESSION: Cannot set cookies for local files
+
+On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
+
+
+PASS document.cookie is 'ppkcookie1=testcookie'
+PASS successfullyParsed is true
+
+TEST COMPLETE
+
--- /dev/null
+<html>
+<head>
+<title>Local File Can Set Cookies</title>
+<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
+<script src="../../fast/js/resources/js-test-pre.js"></script>
+</head>
+
+<body>
+<p id="description"></p>
+<div id="console"></div>
+<script>
+ description('This test checks that a local file can set cookies. See: rdar://problem/5379090 REGRESSION: Cannot set cookies for local files');
+
+ document.cookie = 'ppkcookie1=testcookie; expires=Thu, 2 Aug 2008 20:47:11 UTC; path=/'
+ shouldBe("document.cookie", "'ppkcookie1=testcookie'");
+
+ var successfullyParsed = true;
+</script>
+<script src="../../fast/js/resources/js-test-post.js"></script>
+</body>
+</html>
+
--- /dev/null
+#
+fast/cookies/local-file-can-set-cookies.html
+
+2007-08-16 Kevin McCullough <kmccullough@apple.com>
+
+ Reviewed by Adam.
+
+ - Added tests for regressions in other components. In this case we also need to add a skipped list for Tiger since this functionality didn't exist in 10.4.
+
+ * Scripts/run-webkit-tests:
+
2007-08-15 Timothy Hatcher <timothy@apple.com>
Look for the new Xcode 3 preference key (PBXApplicationwideBuildSettings) for the global build locations.
my $errorTag = "stderr";
my $useWinSkipped = 0;
-if (isLeopard()) {
+if (isTiger()) {
+ $platform = "mac-tiger";
+} elsif (isLeopard()) {
$platform = "mac-leopard";
} elsif (isOSX()) {
$platform = "mac";