summaryrefslogtreecommitdiffstats
path: root/testing/firefox-ui/resources/cookies/cookie_single.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/firefox-ui/resources/cookies/cookie_single.html')
-rw-r--r--testing/firefox-ui/resources/cookies/cookie_single.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/testing/firefox-ui/resources/cookies/cookie_single.html b/testing/firefox-ui/resources/cookies/cookie_single.html
new file mode 100644
index 000000000..d4a02b45b
--- /dev/null
+++ b/testing/firefox-ui/resources/cookies/cookie_single.html
@@ -0,0 +1,16 @@
+<!DOCTYPE html>
+<html lang="en" dir="ltr">
+<head>
+<script type="text/javascript">
+ function setCookie()
+ {
+ var date = new Date();
+ date.setDate(new Date().getDate() + 36);
+ document.cookie = "litmus_1=true;expires=" + date.toGMTString();
+ }
+</script>
+</head>
+
+<body onload="setCookie()">
+</body>
+</html>