Sign in
webkit
/
WebKit
/
47b8206e2462d5a862fef65e142ae8764bd9b9e5
/
.
/
LayoutTests
/
imported
/
w3c
/
web-platform-tests
/
eventsource
/
eventsource-constructor-empty-url.any.js
blob: 850d854db4d22b757846ac3ffd79db7f207a2136 [
file
] [
log
] [
blame
]
// META: global=window,worker
test
(
function
()
{
const
source
=
new
EventSource
(
""
);
assert_equals
(
source
.
url
,
self
.
location
.
toString
());
},
"EventSource constructor with an empty url."
);