Skip to content

Commit

Permalink
Content fixes (mdn#35611)
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh-Cena authored Aug 28, 2024
1 parent c0f1aec commit e050b87
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion files/en-us/learn/performance/html/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ You can also lazy load video content by using the `preload` attribute. For examp

Giving `preload` a value of `none` tells the browser to not preload any of the video data before the user decides to play it, which is obviously good for performance. Instead, it will just show the image indicated by the `poster` attribute. Different browsers have different default video loading behavior, so it is good to be explicit.

See [Lazy loading video](https://web.dev/articles/lazy-loading-video) on web.dev for detailed information.
See [Fast playback with audio and video preload](https://web.dev/articles/fast-playback-with-preload) on web.dev for detailed information.

## Handling embedded content

Expand Down
6 changes: 3 additions & 3 deletions files/en-us/web/api/shared_storage_api/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ The **Run** output gate, accessed via the {{domxref("WindowSharedStorage.run", "

The [Private Aggregation API](https://developers.google.com/privacy-sandbox/relevance/private-aggregation) can use the Run output gate to process shared storage data and generate aggregated reports. These reports can be used in the following use cases:

- [**Unique reach reporting**](https://developers.google.com/privacy-sandbox/relevance/shared-storage/unique-reach): Content producers and advertisers often want to know the number of unique viewers for their content. You can use shared storage to report the first time a user sees your ad or embedded publication and prevent duplicate counting for the same user on a different site, giving you an aggregated noisy report of approximate unique reach.
- [**User demographic reporting**](https://developers.google.com/privacy-sandbox/relevance/shared-storage/user-demographics): Content producers often want to understand the demographics of their audience. You can use shared storage to record user demographic data on your main site, and use aggregated reporting to report on it across other sites in embedded contexts.
- [**K+ frequency measurement**](https://developers.google.com/privacy-sandbox/relevance/shared-storage/k-freq-reach): Sometimes described as "effective frequency", K+ frequency refers to the minimum number of views needed before a user will recognize or recall certain content (often used in the context of ad views). You can use shared storage to build reports of unique users who have seen a piece of content at least K times.
- [**Unique reach reporting**](https://developers.google.com/privacy-sandbox/relevance/private-aggregation/unique-reach): Content producers and advertisers often want to know the number of unique viewers for their content. You can use shared storage to report the first time a user sees your ad or embedded publication and prevent duplicate counting for the same user on a different site, giving you an aggregated noisy report of approximate unique reach.
- [**User demographic reporting**](https://developers.google.com/privacy-sandbox/relevance/private-aggregation/user-demographics): Content producers often want to understand the demographics of their audience. You can use shared storage to record user demographic data on your main site, and use aggregated reporting to report on it across other sites in embedded contexts.
- [**K+ frequency measurement**](https://developers.google.com/privacy-sandbox/relevance/private-aggregation/k-freq-reach): Sometimes described as "effective frequency", K+ frequency refers to the minimum number of views needed before a user will recognize or recall certain content (often used in the context of ad views). You can use shared storage to build reports of unique users who have seen a piece of content at least K times.

## Understanding how shared storage works

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/sharedstoragerunoperation/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ async function measureUniqueReach() {
measureUniqueReach();
```

For more details about this example, see [Unique reach measurement](https://developers.google.com/privacy-sandbox/relevance/shared-storage/unique-reach). See [Shared Storage API](/en-US/docs/Web/API/Shared_Storage_API) for more examples.
For more details about this example, see [Unique reach measurement](https://developers.google.com/privacy-sandbox/relevance/private-aggregation/unique-reach). See [Shared Storage API](/en-US/docs/Web/API/Shared_Storage_API) for more examples.

## Specifications

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/windowsharedstorage/run/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ async function measureUniqueReach() {
measureUniqueReach();
```

See [Unique reach measurement](https://developers.google.com/privacy-sandbox/relevance/shared-storage/unique-reach) for a full explanation of this example. See [Shared Storage API](/en-US/docs/Web/API/Shared_Storage_API) for more examples.
See [Unique reach measurement](https://developers.google.com/privacy-sandbox/relevance/private-aggregation/unique-reach) for a full explanation of this example. See [Shared Storage API](/en-US/docs/Web/API/Shared_Storage_API) for more examples.

## Specifications

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/workletsharedstorage/get/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ class KFreqMeasurementOperation {
register("k-freq-measurement", KFreqMeasurementOperation);
```
For more details about this example, see [K+ frequency measurement](https://developers.google.com/privacy-sandbox/relevance/shared-storage/k-freq-reach). See the [Shared Storage API](/en-US/docs/Web/API/Shared_Storage_API) landing page for links to other examples.
For more details about this example, see [K+ frequency measurement](https://developers.google.com/privacy-sandbox/relevance/private-aggregation/k-freq-reach). See the [Shared Storage API](/en-US/docs/Web/API/Shared_Storage_API) landing page for links to other examples.
## Specifications
Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/css/flex/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ The `flex` property may be specified using one, two, or three values.
- `<'flex-shrink'>`
- : Defines the {{cssxref("flex-shrink")}} of the flex item. Negative values are considered invalid. Defaults to `1` when omitted. (initial is `1`)
- `<'flex-basis'>`
- : Defines the {{cssxref("flex-basis")}} of the flex item. Defaults to `0%` when omitted. The initial value is `auto`.
- : Defines the {{cssxref("flex-basis")}} of the flex item. Defaults to `0%` when omitted. The initial value is `auto`.
- `none`
- : The item is sized according to its `width` and `height` properties. It is fully inflexible: it neither shrinks nor grows in relation to the flex container. This is equivalent to setting `flex: 0 0 auto`.

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/performance/lazy_loading/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,4 +94,4 @@ When browser compatibility is crucial, there are a few options:
## See also

- [Render blocking CSS](https://web.dev/articles/critical-rendering-path/render-blocking-css)
- [Use lazy loading to improve loading speed](https://web.dev/articles/lazy-loading)
- [Browser-level image lazy loading for the web](https://web.dev/articles/browser-level-image-lazy-loading)

0 comments on commit e050b87

Please sign in to comment.