Skip to content
Draft
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion features/element-timing.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Element timing

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
name: Element timing
name: Element Timing performance entries

description: The `element` performance entry and the `PerformanceElementTiming` API measures the time to render elements that have the `elementtiming` attribute.
description: An `element` performance entry measures the time to render elements that have the `elementtiming` attribute.
spec: https://w3c.github.io/element-timing/
group: performance
compat_features:
Expand Down
4 changes: 2 additions & 2 deletions features/interaction-contentful-paint.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Interaction contentful paint
description: The `interaction-contentful-paint` performance entry, which returns an `InteractionContentfulPaint` instance, is emitted when an interaction causes one or more contentful paints. Use it to measure LCP for soft navigations in single page apps or to measure contentful paints due to an interaction.
name: Interaction Contentful Paint performance entries
description: An `interaction-contentful-paint` performance entry measures the duration of an interaction that causes one or more contentful paints. You can use it to measure LCP for soft navigations in single page apps.
spec: https://wicg.github.io/soft-navigations/#sec-interaction-contentful-paint
group: performance
compat_features:
Expand Down
4 changes: 2 additions & 2 deletions features/largest-contentful-paint.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Largest contentful paint (LCP)
description: The `largest-contentful-paint` performance entry and the `LargestContentfulPaint` API measures the time it takes for the largest image or text to appear. Largest contentful paint (LCP) is a common metric for perceived loading times.
name: Largest Contentful Paint (LCP) performance entries
description: A `largest-contentful-paint` performance entry measures the time it takes for the largest image or text to appear. Largest Contentful Paint (LCP) is a common metric for perceived loading times.
spec: https://w3c.github.io/largest-contentful-paint/
group: performance
compat_features:
Expand Down
2 changes: 1 addition & 1 deletion features/layout-instability.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Layout instability

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
name: Layout instability
name: Layout Instability performance entries

description: The `layout-shift` performance entry and `LayoutShift` API measures the layout stability of web pages based on movements of the elements on the page. They're used to calculate Cumulative Layout Shift (CLS), a common metric for perceived stability.
description: A `layout-shift` performance entry measures the layout stability of web pages based on movements of the elements on the page. They're used to calculate Cumulative Layout Shift (CLS), a common metric for perceived stability.
spec: https://wicg.github.io/layout-instability/
group: performance
compat_features:
Expand Down
2 changes: 1 addition & 1 deletion features/navigation-timing.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Navigation timing

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
name: Navigation timing
name: Navigation Timing performance entries

description: The `navigation` performance entry and the `PerformanceNavigationTiming` API measures navigation events, such as loading time or the number of redirects.
description: A `navigation` performance entry measures navigation events, such as loading time or the number of redirects.
spec: https://w3c.github.io/navigation-timing/
group: performance
status:
Expand Down
2 changes: 1 addition & 1 deletion features/page-visibility-state.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Page visibility state

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
name: Page visibility state
name: Page Visibility State Entry performance entry

I think this is especially important to rename to differentiate it from page-visibility.yml (which is related but different - one just gets the current state, the other monitors for changes).

description: The `visibility-state` performance entry and the `VisibilityStateEntry` API measure the timing of page visibility state changes, such as when a tab is no longer visible or the user has switched to another app.
description: A `visibility-state` performance entry measures the timing of page visibility state changes, such as when a tab is no longer visible or the user has switched to another app.
spec: https://html.spec.whatwg.org/multipage/interaction.html#the-visibilitystateentry-interface
group: performance
compat_features:
Expand Down
2 changes: 1 addition & 1 deletion features/paint-timing.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Paint timing

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
name: Paint timing
name: Paint Timing performance entries

description: The `paint` performance entry and the `PerformancePaintTiming` API measures the duration of "paint" (also called "render") operations as a page loads. The API measures the time to First Paint (FP) and First Contentful Paint (FCP), common metrics for perceived loading times.
description: A `paint` performance entry measures the duration of "paint" (also called "render") operations as a page loads. It measures the time to First Paint (FP) and First Contentful Paint (FCP), common metrics for perceived loading times.
spec: https://w3c.github.io/paint-timing/
group: performance
status:
Expand Down
2 changes: 1 addition & 1 deletion features/resource-timing.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Resource timing

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
name: Resource timing
name: Resource Timing performance entries

description: "`PerformanceResourceTiming` entries report when network events happen while loading a resource, such as when connections start and end. You can use this information to measure loading times."
description: A `PerformanceResourceTiming` performance entry records when a network event happens while loading a resource, such as when a connection starts and ends. You can use this information to measure loading times.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
description: A `PerformanceResourceTiming` performance entry records when a network event happens while loading a resource, such as when a connection starts and ends. You can use this information to measure loading times.
description: A `resource` performance entry records network event timings, such as when a connection starts and ends or loading time, for resources requested by a page.

spec: https://w3c.github.io/resource-timing/
group: performance
caniuse: resource-timing
Expand Down
2 changes: 1 addition & 1 deletion features/soft-navigations.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Soft navigation performance entries

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
name: Soft navigation performance entries
name: Soft Navigation performance entries

description: The `soft-navigation` performance entry, which returns a `PerformanceSoftNavigation` instance, is emitted when soft navigation occurs in a single page app. This is defined as when a trusted user interaction causes a URL update and a visible contentful paint to the screen.
description: A `soft-navigation` performance entry measures the duration of a soft navigation in a single page app. A soft navigation is defined as when a trusted user interaction causes a URL update and a visible contentful paint to the screen.
spec: https://wicg.github.io/soft-navigations/#sec-soft-navs
group: performance
compat_features:
Expand Down