| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <title>Local File Can Set Cookies</title> | 3 <title>Local File Can Set Cookies</title> |
| 4 <script src="../../fast/js/resources/js-test-pre.js"></script> | 4 <script src="../../fast/js/resources/js-test-pre.js"></script> |
| 5 </head> | 5 </head> |
| 6 | 6 |
| 7 <body> | 7 <body> |
| 8 <script> | 8 <script> |
| 9 description('This test checks that a local file can set cookies. See: rdar:
//problem/5379090 REGRESSION: Cannot set cookies for local files'); | 9 description('This test checks that a local file can set cookies. See: rdar:
//problem/5379090 REGRESSION: Cannot set cookies for local files'); |
| 10 | 10 |
| 11 shouldBe("document.cookie.indexOf('ppkcookie1=testcookie')", "-1"); | 11 shouldBe("document.cookie.indexOf('ppkcookie1=testcookie')", "-1"); |
| 12 document.cookie = 'ppkcookie1=testcookie'; | 12 document.cookie = 'ppkcookie1=testcookie'; |
| 13 shouldBeTrue("document.cookie.indexOf('ppkcookie1=testcookie') >= 0"); | 13 shouldBeTrue("document.cookie.indexOf('ppkcookie1=testcookie') >= 0"); |
| 14 </script> | 14 </script> |
| 15 <script src="../../fast/js/resources/js-test-post.js"></script> | |
| 16 </body> | 15 </body> |
| 17 </html> | 16 </html> |
| 18 | 17 |
| OLD | NEW |