Files
tubestation/testing/web-platform/tests/eventsource/eventsource-url.any.js
MierenManz aaf8143725 Bug 1722042 [wpt PR 29765] - EventSource: Convert some htm tests to JS, a=testonly
Automatic update from web-platform-tests
EventSource: use .any.js and .window.js more

--

wpt-commits: 00e8611b23fed04f014e882c12980cafc77e2c1b
wpt-pr: 29765
2021-09-21 14:20:36 +00:00

9 lines
234 B
JavaScript

// META: title=EventSource: url
test(function() {
var url = "resources/message.py",
source = new EventSource(url)
assert_equals(source.url.substr(-(url.length)), url)
source.close()
})