mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
816205e422
--HG-- rename : browser/devtools/shared/Templater.jsm => toolkit/devtools/gcli/Templater.jsm rename : browser/devtools/commandline/gcli.jsm => toolkit/devtools/gcli/gcli.jsm
19 lines
360 B
HTML
19 lines
360 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>GCLI cookie command test</title>
|
|
</head>
|
|
<body>
|
|
|
|
<p>Cookie test</p>
|
|
<p id=result></p>
|
|
<script type="text/javascript">
|
|
document.cookie = "zap=zep";
|
|
document.cookie = "zip=zop";
|
|
document.getElementById("result").innerHTML = document.cookie;
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|