Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /eventsource/eventsource-prototype.any.html - WPT Dashboard Interop Dashboard
- /eventsource/eventsource-prototype.any.worker.html - WPT Dashboard Interop Dashboard
// META: title=EventSource: prototype et al
test(function() {
EventSource.prototype.ReturnTrue = function() { return true }
var source = new EventSource("resources/message.py")
assert_true(source.ReturnTrue())
assert_own_property(self, "EventSource")
source.close()
})