comparison: browser/devtools/commandline/test/browser_cmd_cookie.html
browser/devtools/commandline/test/browser_cmd_cookie.html
- changeset 0
- 6474c204b198
equal
deleted
inserted
replaced
|
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> |
|
8 |
|
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> |
|
16 |
|
17 </body> |
|
18 </html> |