-
Notifications
You must be signed in to change notification settings - Fork 54
Description
Problem statement
In webidl#526 a new Exposed annotation, [Exposed=*], was introduced. It denotes a fundamental set of interfaces that are intended to be exposed in Window, all Workers, all Worklets, ShadowRealm, as well as any future global scopes.
We've heard concerns (e.g., tc39/proposal-shadowrealm#401) that it's not clear when an interface should belong to this fundamental set and when it shouldn't. We'd like to issue guidance for this in a design principle.
I'm interested in feedback on the proposed guidance below, and am willing to write up the conclusions in a PR if it is generally positive.
Proposed guidance
[Exposed=*] should be applied only to purely computational interfaces. That is, they do not perform I/O and do not affect the state of the user agent or the user's device.
Anything annotated with [SecureContext] should not be exposed everywhere; not all global scopes are secure contexts.
Anything relying on an event loop should not be exposed everywhere; not all global scopes have an event loop.
The [Exposed=*] annotation should also be applied conservatively. If an interface is not that useful without other interfaces that are not exposed everywhere, default to not exposing that interface as well.
Further reading
Directly related, but predates [Exposed=*]: #35
Discussion resulting in the addition of [Exposed=*]: webidl#468
Other relevant reading: #325, #360, #448, tc39/ecma262#1120, WebAudio/web-audio-api#2499, tc39/proposal-shadowrealm#398