-
Notifications
You must be signed in to change notification settings - Fork 8
Checks on allowed usage are specced incorrectly #19
Description
(This seems related to #10, but it's focused more on the details, so I opened a new issue.)
If the incumbent settings object is not a secure context, then reject this Navigator object's battery promise with a "SecurityError" DOMException, return this Navigator object's battery promise and abort these steps.
"incumbent settings object" should never be used by new specifications. I hope nobody implemented it this way. Instead, prefer the relevant settings object of this Navigator object.
See https://un5nj90kzk5vf152hgyfw29h1eja2.julianrbryant.com/multipage/webappapis.html#realms-settings-objects-global-objects to learn about the (testable, observable) differences between these choices.
(Thanks @TimothyGu for spotting this.)
If the browsing context is not a top-level browsing context, then reject this Navigator object's battery promise with a "SecurityError" DOMException, return this Navigator object's battery promise and abort these steps.
What is "the browsing context"?
Probably you want, hmm, this Navigator object's relevant global object's associated Document's browsing context?
(If we see this pattern more, maybe we should make it easier to write... I'll file a tracking issue.)