mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-08 09:28:51 +00:00
16 lines
362 B
HTML
16 lines
362 B
HTML
<!doctype html>
|
|
<title>undefined as ports</title>
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<div id=log></div>
|
|
<script>
|
|
async_test(function() {
|
|
postMessage('', '*', undefined);
|
|
onmessage = this.step_func(function(e) {
|
|
assert_array_equals(e.ports, []);
|
|
this.done();
|
|
});
|
|
});
|
|
</script>
|
|
|