Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /workers/constructors/SharedWorker/port-readonly.html - WPT Dashboard Interop Dashboard
<!doctype html>
<title>setting worker.port</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
test(() => {
const worker = new SharedWorker('empty.js', '');
const x = worker.port;
worker.port = 1;
assert_equals(worker.port, x);
});
</script>