mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
15 lines
339 B
HTML
15 lines
339 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<script type="text/javascript">
|
|
// generate an enormous random number...
|
|
var r = Math.floor(Math.random() * Math.pow(2, 62)).toString();
|
|
|
|
// ... and use it to set a randomly named cookie
|
|
document.cookie = r + "=value; path=/ohai";
|
|
</script>
|
|
<body>
|
|
</body>
|
|
</html>
|