Forgot to add expected source for test

This commit is contained in:
dreisman 2016-10-04 14:28:31 -04:00
Родитель 683216f792
Коммит 9c59781885
1 изменённых файлов: 18 добавлений и 0 удалений

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

@ -0,0 +1,18 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"><head>
<title>Simple Page A</title>
<script type="application/javascript">
function set_cookie() {
document.cookie = 'test_cookie=Test-Page-A; expires=Tue, 31 Dec 2030 00:00:00 UTC; path=/';
console.log(window.navigator.userAgent);
}
</script>
</head>
<body onload="set_cookie()">
<a href="http://localtest.me:8000/test_pages/simple_c.html">Click me!</a>
<a href="simple_d.html">Click me also!</a>
<a href="javascript:alert(1)">Click me for a JS alert!</a>
<a href="https://www.google.com">Go to google.com</a>
<a href="http://example.com/test.html?localtest.me">Go to example.com</a>
</body></html>