Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(92)

Side by Side Diff: LayoutTests/fast/cookies/local-file-can-set-cookies.html

Issue 48903019: Delete js-test-post.js. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
OLDNEW
« no previous file with comments | « LayoutTests/fast/cookies/cookies-disabled-in-data-url.html ('k') | LayoutTests/fast/css-grid-layout/display-grid-set-get.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698