### What is the issue with the Notifications API Standard? The service-worker-only event's init dictionary requires a Notification object, but [its construction is restricted in service workers](https://notifications.spec.whatwg.org/#dom-notification-notification). Meaning there's no good way to call the constructor. > The new Notification(title, options) constructor steps are: > > 1. If [this](https://webidl.spec.whatwg.org/#this)’s [relevant global object](https://html.spec.whatwg.org/multipage/webappapis.html#concept-relevant-global) is a [ServiceWorkerGlobalScope](https://w3c.github.io/ServiceWorker/#serviceworkerglobalscope) object, then [throw](https://webidl.spec.whatwg.org/#dfn-throw) a [TypeError](https://webidl.spec.whatwg.org/#exceptiondef-typeerror).