1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/browser/devtools/commandline/test/browser_cmd_cookie.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,18 @@ 1.4 +<!doctype html> 1.5 +<html lang="en"> 1.6 +<head> 1.7 + <meta charset="utf-8"> 1.8 + <title>GCLI cookie command test</title> 1.9 +</head> 1.10 +<body> 1.11 + 1.12 + <p>Cookie test</p> 1.13 + <p id=result></p> 1.14 + <script type="text/javascript"> 1.15 + document.cookie = "zap=zep"; 1.16 + document.cookie = "zip=zop"; 1.17 + document.getElementById("result").innerHTML = document.cookie; 1.18 + </script> 1.19 + 1.20 +</body> 1.21 +</html>