Sign in
webkit
/
WebKit
/
b4234713c85383e00e81c500ff74ee340e8a262a
/
.
/
LayoutTests
/
http
/
tests
/
eventsource
/
resources
/
request-non-existent-eventsource-error.html
blob: 9db74976c1cca63eabe662534fe7a2c39fc08f53 [
file
] [
log
] [
blame
]
<html>
<body>
<script>
function
statusTest
()
{
var
source
=
new
EventSource
(
"does_not_exist"
);
source
.
onerror
=
function
()
{
top
.
finish
();
}
}
statusTest
();
</script>
</body>
</html>