OpenWPM/test/test_pages/simple_b.html

14 строки
350 B
HTML

<!doctype html>
<html>
<head>
<title>Simple Page B</title>
<script type="application/javascript">
function set_cookie() {
document.cookie = 'test_cookie=Test-Page-B; expires=Tue, 31 Dec 2030 00:00:00 UTC; path=/';
console.log(window.navigator.platform);
}
</script>
</head>
<body onload="set_cookie()">
</body></html>