diff --git a/index.html b/index.html index c0627aa4..c28851f6 100644 --- a/index.html +++ b/index.html @@ -812,6 +812,12 @@

Endpoints

Fullscreen Window + + POST + /session/{session id}/window/consume-user-activation + [=Consume user activation of Window=] + + GET /session/{session id}/element/active @@ -4039,8 +4045,43 @@

Fullscreen Window

context. - +
+

Consume user activation of Window

+ + + + + + + + + + +
HTTP MethodURI Template
POST/session/{session id}/window/consume-user-activation
+ +

The remote end steps are: + +

    +
  1. If the current top-level browsing context is no longer open, + return error with error code no such window. + +

  2. Handle any user prompts and return its value if it is an error. + + +

  3. Let |window| be current browsing context's active window. + +

  4. Let |consume| be true if |window| has [=transient activation=] or false otherwise. + +

  5. If |consume| is true, [=consume user activation=] of |window|. + +

  6. Return success with data |consume|. +

+