Index: chrome/test/data/android/cookie.html |
diff --git a/chrome/test/data/android/cookie.html b/chrome/test/data/android/cookie.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..f2e6415ca16782a05f0b89200e564149dd63e80d |
--- /dev/null |
+++ b/chrome/test/data/android/cookie.html |
@@ -0,0 +1,17 @@ |
+<!DOCTYPE html> |
+<html> |
+ <script> |
+ if (window.location.hash.indexOf('clear') != -1) { |
+ document.cookie = ''; |
+ } |
+ |
+ function setCookie() { |
+ document.cookie = 'Foo=Bar'; |
+ } |
+ |
+ function getCookie() { |
+ return document.cookie; |
+ } |
+ </script> |
+ <body>Test for setting and getting cookies.</body> |
+</html> |