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

Side by Side Diff: chrome/test/data/setcookie.html

Issue 3050018: New PyAuto tests for cookies. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Nits Created 10 years, 4 months 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
« no previous file with comments | « no previous file | chrome/test/functional/cookies.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <html>
2 <head>
3 <title>This page sets a cookie</title>
4 <script type="text/javascript">
5 function makeCookie()
6 {
7 expireAt = new Date;
8 expireAt.setMonth(expireAt.getMonth() + 3);
9 username = "Good";
10 document.cookie = "name=" + username + ";expires=" + expireAt.toGMTString()
11 }
12 </script>
13 </head>
14 <body onLoad="makeCookie()">
15 </body>
16 </html>
OLDNEW
« no previous file with comments | « no previous file | chrome/test/functional/cookies.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698