Index: chrome/test/data/setcookie.html |
diff --git a/chrome/test/data/setcookie.html b/chrome/test/data/setcookie.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..b07e113672b96a53bf106eb5515bbc1842aa26dc |
--- /dev/null |
+++ b/chrome/test/data/setcookie.html |
@@ -0,0 +1,16 @@ |
+<html> |
+<head> |
+<title>This page sets a cookie</title> |
+<script type="text/javascript"> |
+function makeCookie() |
+{ |
+ expireAt = new Date; |
+ expireAt.setMonth(expireAt.getMonth() + 3); |
+ username = "Good"; |
+ document.cookie = "name=" + username + ";expires=" + expireAt.toGMTString() |
+} |
+</script> |
+</head> |
+<body onLoad="makeCookie()"> |
+</body> |
+</html> |