Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 <!doctype html>
2 <html lang="en">
3 <head>
4 <meta charset="utf-8">
5 <title>GCLI cookie command test</title>
6 </head>
7 <body>
9 <p>Cookie test</p>
10 <p id=result></p>
11 <script type="text/javascript">
12 document.cookie = "zap=zep";
13 document.cookie = "zip=zop";
14 document.getElementById("result").innerHTML = document.cookie;
15 </script>
17 </body>
18 </html>