mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-08 16:58:38 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
|
|
@ -0,0 +1,39 @@
|
|||
<!--
|
||||
onconnect = function(e) {
|
||||
try {
|
||||
var port = e.ports[0]
|
||||
var source = new EventSource("../resources/message.py")
|
||||
source.onopen = function(e) {
|
||||
this.close()
|
||||
port.postMessage([true, this.readyState])
|
||||
}
|
||||
} catch(e) {
|
||||
port.postMessage([false, String(e)])
|
||||
}
|
||||
}
|
||||
/*-->
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>shared worker - EventSource: close()</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('#')
|
||||
worker.port.onmessage = function(e) {
|
||||
test.step(function() {
|
||||
assert_true(e.data[0], e.data[1])
|
||||
assert_equals(e.data[1], EventSource.CLOSED, 'this.readyState')
|
||||
})
|
||||
test.done()
|
||||
}
|
||||
})
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
<!--*/ //-->
|
||||
Loading…
Add table
Add a link
Reference in a new issue