This commit is contained in:
englehardt 2019-07-03 08:13:38 -07:00
Родитель 49e0d2c367
Коммит cbcd928224
1 изменённых файлов: 15 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,15 @@
<!doctype html>
<html>
<head>
<title>Simple test page</title>
<script type="application/javascript">
function set_cookie() {
document.cookie = 'test_cookie='+Math.random()+'; expires=Tue, 31 Dec 2030 00:00:00 UTC; path=/';
console.log(window.navigator.userAgent);
}
</script>
</head>
<body onload="set_cookie()">
<img src='shared/test_image.png' />
<img alt='test image' src='/MAGIC_REDIRECT/req1.png?dst=req2.png&dst=req3.png&dst=/test_pages/shared/test_image_2.png' />
</body></html>