blob: 16c932a3384eb661e501bc5e11f8be0f4fb2c89d [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>