Files
tubestation/testing/web-platform/tests/eventsource/eventsource-onopen.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

18 lines
521 B
JavaScript

// META: title=EventSource: onopen (announcing the connection)
var test = async_test()
test.step(function() {
source = new EventSource("resources/message.py")
source.onopen = function(e) {
test.step(function() {
assert_equals(source.readyState, source.OPEN)
assert_false(e.hasOwnProperty('data'))
assert_false(e.bubbles)
assert_false(e.cancelable)
this.close()
}, this)
test.done()
}
})