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

Fix broken references #141

Merged
merged 2 commits into from
May 24, 2024
Merged
Changes from all 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
8 changes: 4 additions & 4 deletions index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ urlPrefix: https://html.spec.whatwg.org/multipage/; spec: HTML;
type: dfn; url: #calling-scripts; text: calling scripts;
type: dfn; url: #list-of-the-descendant-browsing-contexts; text: list of the descendant browsing contexts;
type: dfn; url: #ancestor-browsing-context; text: ancestor;
type: dfn; url: #unit-of-related-browsing-contexts; text: unit of related browsing contexts
type: dfn; url: #browsing-context-group-set; text: browsing context group set
type: dfn; url: #script-evaluation-environment-settings-object-set; text: script evaluation environment settings object set
type: dfn; url: #integration-with-the-javascript-agent-cluster-formalism; text: agent cluster
type: dfn; url: #concept-task-document; for: task; text: document;
Expand Down Expand Up @@ -230,7 +230,7 @@ Pointing to the culprit {#sec-PointingToCulprit}

<em>This section is non-normative.</em>

A <a>long task</a> can involve different types of work (such as script, layout, style etc), and it could be executed within different <a>browsing contexts</a>, or it could be global in nature such as a long garbage collection that spans the entire <a>agent cluster</a> or <a>unit of related browsing contexts</a>.
A <a>long task</a> can involve different types of work (such as script, layout, style etc), and it could be executed within different <a>browsing contexts</a>, or it could be global in nature such as a long garbage collection that spans the entire <a>agent cluster</a> or <a>browsing context group set</a>.

Thus <a>attribution</a> has a couple of facets:

Expand Down Expand Up @@ -294,7 +294,7 @@ Report long tasks {#report-long-tasks}
<div algorithm="Report long tasks">
Given |start time|, |end time|, |top-level browsing contexts|, and |task|, perform the following algorithm:

1. [=Report task end time=] given |end time| and |task|'s [=task/document=].
1. [=Record task end time=] given |end time| and |task|'s [=task/document=].

1. If |end time| minus |start time| is less than the long tasks threshold of 50 ms, abort these steps.

Expand Down Expand Up @@ -456,4 +456,4 @@ The following are the timing attacks considered:
the permalink page can be used to determine whether the user is in the target demographic.

These scenarios are addressed by the 50ms threshold AND respecting cross-origin boundary i.e. not
showing task type or additional attribution to untrusted cross origin observers.
showing task type or additional attribution to untrusted cross origin observers.
Loading