mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-08 17:39:19 +00:00
14 lines
294 B
HTML
14 lines
294 B
HTML
<!doctype html>
|
|
<title>1 as ports</title>
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<div id=log></div>
|
|
<script>
|
|
test(function() {
|
|
assert_throws(new TypeError(), function() {
|
|
postMessage('', '*', 1);
|
|
});
|
|
});
|
|
</script>
|
|
|