Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Input events dispatch to top-level frame #1847

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 9 additions & 7 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2212,8 +2212,8 @@ <h2>Sessions</h2>
browsing context</dfn>, which is set to the parent of the <a>current
browsing context</a> when changing browsing contexts, and an
associated <dfn>current top-level browsing context</dfn>, which is
set to the top-browsing context ancestor of the <a>current browsing
context</a>, when changing browsing contexts.</p>
set to the [=browsing context/top-level browsing context=] of the
<a>current browsing context</a>, when changing browsing contexts.</p>

<p>An <a>HTTP session</a> has an associated <dfn>session
timeouts</dfn> which is a <a>timeouts configuration</a>. This is
Expand Down Expand Up @@ -8286,11 +8286,12 @@ <h3>Ticks</h3>
content observable effects that must be consistent across
implementations. To accommodate this, the specification requires
that <a>remote ends</a> <dfn>perform implementation-specific action
dispatch steps</dfn> on a <a>browsing context</a> <var>context</var>,
and a <var>list of events</var> and their properties. These steps
must be equivalent to performing the given input device manipulations
on <var>context</var>, such that trusted events corresponding to the
entries in <var>list of events</var>are dispatched.
dispatch steps</dfn> on a [=browsing context/top-level browsing context=] of
<var>context</var>, and a <var>list of events</var> and their properties.
These steps must be equivalent to performing the given input device
manipulations on the [=browsing context/top-level browsing context=] of the
<var>context</var>, such that trusted events corresponding to the entries in
<var>list of events</var> are dispatched.

<aside class=note>
<p>The list of events is not comprehensive; in particular the default
Expand Down Expand Up @@ -11742,6 +11743,7 @@ <h2>Index</h2>
<!-- Simple dialogs --> <li><dfn data-lt="simple dialog"><a href=https://html.spec.whatwg.org/#simple-dialogs>Simple dialogs</a></dfn>
<!-- Steps to fire beforeunload --> <li><dfn><a href=https://html.spec.whatwg.org/#steps-to-fire-beforeunload>Steps to fire beforeunload</a></dfn>
<!-- Suffering from bad input --> <li><dfn><a href=https://html.spec.whatwg.org/#suffering-from-bad-input>Suffering from bad input</a></dfn>
<!-- Top-level browsing context --> <li><dfn data-dfn-for="browsing context"><a href=https://html.spec.whatwg.org/#bc-tlbc>Top-level browsing context</a></dfn>
<!-- Traverse the history by a delta --> <li><dfn><a href=https://html.spec.whatwg.org/#traverse-the-history-by-a-delta>Traverse the history by a delta</a></dfn>
<!-- Unfocusing steps --><li><dfn><a href=https://html.spec.whatwg.org/#unfocusing-steps>unfocusing steps</a></dfn>
<!-- User prompt --> <li><dfn data-lt="user prompts"><a href=https://html.spec.whatwg.org/#user-prompts>User prompt</a></dfn>
Expand Down
Loading