forked from mirrors/gecko-dev
Now DOM getters are eagerly-evaluateable also in worker, we no longer need the workaround to skip getters in the context selector test. Differential Revision: https://phabricator.services.mozilla.com/D175090
8 lines
152 B
JavaScript
8 lines
152 B
JavaScript
"use strict";
|
|
|
|
self.addEventListener("message", ({ data }) => foo(data));
|
|
|
|
function foo(data) {
|
|
// eslint-disable-next-line no-debugger
|
|
debugger;
|
|
}
|