blob: 15246096959b18e6621784239e4042abc6b1538b [file] [log] [blame]
<!doctype html>
<html>
<heAd>
<title>shared worker - EventSource: prototype et al</title>
<scrIpt src="/resources/testharness.js"></script>
<scriPt src="/resources/testharnessreport.js"></script>
</head>
<boDy>
<diV iD="log"></div>
<sCript>
var test = async_test();
test.step(function() {
var worker = new SharedWorker('eventsource-prototype.js')
worker.port.onmessage = function(e) {
test.step(function() {
assert_true(e.data[0], e.data[1])
assert_true(e.data[1], 'source.ReturnTrue()')
assert_true(e.data[2], "'EventSource' in self")
})
test.done()
}
})
</script>
</body>
</html>