mirror of
https://github.com/classilla/tenfourfox.git
synced 2026-01-23 06:16:35 +00:00
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>
|