Automatic update from web-platform-tests EventSource: use .any.js and .window.js more -- wpt-commits: 00e8611b23fed04f014e882c12980cafc77e2c1b wpt-pr: 29765
9 lines
234 B
JavaScript
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()
|
|
})
|