Skip to content

Commit

Permalink
Update redirected links, part6 (#35222)
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh-Cena authored Aug 4, 2024
1 parent b24d88d commit f2088b8
Show file tree
Hide file tree
Showing 54 changed files with 93 additions and 94 deletions.
2 changes: 1 addition & 1 deletion files/en-us/web/api/hid/requestdevice/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ requestDevice(options)

- : An integer representing the usage page component of the HID usage of the requested device. The usage for a top level collection is used to identify the device type.

Standard HID usage values can be found in the [HID Usage Tables](https://usb.org/document-library/hid-usage-tables-13) document
Standard HID usage values can be found in the [HID Usage Tables](https://usb.org/document-library/hid-usage-tables-15) document

- `usage` {{optional_inline}}
- : An integer representing the usage ID component of the HID usage of the requested device.
Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/hiddevice/collections/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ An array of report formats. Each entry contains the following:

- : An integer representing the usage page component of the HID usage associated with this collection. The usage for a top level collection is used to identify the device type.

Standard HID usage values can be found in the [HID Usage Tables](https://usb.org/document-library/hid-usage-tables-13) document
Standard HID usage values can be found in the [HID Usage Tables](https://usb.org/document-library/hid-usage-tables-15) document

- `usage`
- : An integer representing the usage ID component of the HID usage associated with this collection.
Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/houdini_apis/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ The CSS Typed OM exposes CSS values as typed JavaScript objects to allow their p

- [CSS Typed OM reference](/en-US/docs/Web/API/CSS_Typed_OM_API)
- [CSS Typed OM guide](/en-US/docs/Web/API/CSS_Typed_OM_API/Guide)
- [Working with the new CSS Typed Object Model](https://developer.chrome.com/blog/cssom/)
- [Working with the new CSS Typed Object Model](https://developer.chrome.com/docs/css-ui/cssom)

### CSS Painting API

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/htmlcanvaselement/getcontext/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ getContext(contextType, contextAttributes)
> in new implementations of WebGL. These implementations have either not reached
> test suite conformance, or the graphics drivers on the platform are not yet
> stable. The [Khronos Group](https://www.khronos.org/) certifies WebGL
> implementations under certain [conformance rules](https://www.khronos.org/registry/webgl/sdk/tests/CONFORMANCE_RULES.txt).
> implementations under certain [conformance rules](https://registry.khronos.org/webgl/sdk/tests/CONFORMANCE_RULES.txt).
- `contextAttributes` {{optional_inline}}

Expand Down
1 change: 0 additions & 1 deletion files/en-us/web/api/htmlelement/offsetheight/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,3 @@ scrollable container.
- {{domxref("Element.scrollHeight")}}
- {{domxref("HTMLElement.offsetWidth")}}
- [Determining the dimensions of elements](/en-US/docs/Web/API/CSS_Object_Model/Determining_the_dimensions_of_elements)
- [MSDN Measuring Element Dimension and Location](<https://docs.microsoft.com/previous-versions/hh781509(v=vs.85)>)
4 changes: 2 additions & 2 deletions files/en-us/web/api/htmlfencedframeelement/allow/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@ console.log(frame.allow);

## See also

- [Fenced frames](https://developer.chrome.com/docs/privacy-sandbox/fenced-frame/) on developer.chrome.com
- [The Privacy Sandbox](https://developer.chrome.com/docs/privacy-sandbox/) on developer.chrome.com
- [Fenced frames](https://developers.google.com/privacy-sandbox/relevance/fenced-frame) on developers.google.com
- [The Privacy Sandbox](https://developers.google.com/privacy-sandbox) on developers.google.com
8 changes: 4 additions & 4 deletions files/en-us/web/api/htmlfencedframeelement/config/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ browser-compat: api.HTMLFencedFrameElement.config

{{SeeCompatTable}}{{APIRef("Fenced Frame API")}}

The **`config`** property of the {{domxref("HTMLFencedFrameElement")}} contains a {{domxref("FencedFrameConfig")}} object, which represents the navigation of a {{htmlelement("fencedframe")}}, i.e. what content will be displayed in it. A `FencedFrameConfig` is returned from a source such as the [Protected Audience API](https://developer.chrome.com/docs/privacy-sandbox/fledge/).
The **`config`** property of the {{domxref("HTMLFencedFrameElement")}} contains a {{domxref("FencedFrameConfig")}} object, which represents the navigation of a {{htmlelement("fencedframe")}}, i.e. what content will be displayed in it. A `FencedFrameConfig` is returned from a source such as the [Protected Audience API](https://developers.google.com/privacy-sandbox/relevance/protected-audience).

## Value

Expand All @@ -23,7 +23,7 @@ When its value is set to a {{domxref("FencedFrameConfig")}} object instance, the

## Examples

To set what content will be shown in a `<fencedframe>`, a utilizing API (such as [Protected Audience](https://developer.chrome.com/docs/privacy-sandbox/fledge/) or [Shared Storage](https://developer.chrome.com/docs/privacy-sandbox/shared-storage/)) generates a {{domxref("FencedFrameConfig")}} object, which is then set as the value of the `<fencedframe>`'s `config` property.
To set what content will be shown in a `<fencedframe>`, a utilizing API (such as [Protected Audience](https://developers.google.com/privacy-sandbox/relevance/protected-audience) or [Shared Storage](https://developers.google.com/privacy-sandbox/relevance/shared-storage)) generates a {{domxref("FencedFrameConfig")}} object, which is then set as the value of the `<fencedframe>`'s `config` property.

The following example gets a `FencedFrameConfig` from a Protected Audience API's ad auction, which is then used to display the winning ad in a `<fencedframe>`:

Expand All @@ -49,5 +49,5 @@ frame.config = frameConfig;

## See also

- [Fenced frames](https://developer.chrome.com/docs/privacy-sandbox/fenced-frame/) on developer.chrome.com
- [The Privacy Sandbox](https://developer.chrome.com/docs/privacy-sandbox/) on developer.chrome.com
- [Fenced frames](https://developers.google.com/privacy-sandbox/relevance/fenced-frame) on developers.google.com
- [The Privacy Sandbox](https://developers.google.com/privacy-sandbox) on developers.google.com
4 changes: 2 additions & 2 deletions files/en-us/web/api/htmlfencedframeelement/height/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@ frame.height = "320";

## See also

- [Fenced frames](https://developer.chrome.com/docs/privacy-sandbox/fenced-frame/) on developer.chrome.com
- [The Privacy Sandbox](https://developer.chrome.com/docs/privacy-sandbox/) on developer.chrome.com
- [Fenced frames](https://developers.google.com/privacy-sandbox/relevance/fenced-frame) on developers.google.com
- [The Privacy Sandbox](https://developers.google.com/privacy-sandbox) on developers.google.com
8 changes: 4 additions & 4 deletions files/en-us/web/api/htmlfencedframeelement/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ _Inherits properties from its parent, {{domxref("HTMLElement")}}._
- {{domxref("HTMLFencedFrameElement.allow")}} {{experimental_inline}}
- : Gets and sets the value of the corresponding `<fencedframe>` `allow` attribute, which represents a [Permissions Policy](/en-US/docs/Web/HTTP/Permissions_Policy) applied to the content when it is first embedded.
- {{domxref("HTMLFencedFrameElement.config")}} {{experimental_inline}}
- : a {{domxref("FencedFrameConfig")}} object, which represents the navigation of a {{htmlelement("fencedframe")}}, i.e. what content will be displayed in it. A `FencedFrameConfig` is returned from a source such as the [Protected Audience API](https://developer.chrome.com/docs/privacy-sandbox/fledge/).
- : a {{domxref("FencedFrameConfig")}} object, which represents the navigation of a {{htmlelement("fencedframe")}}, i.e. what content will be displayed in it. A `FencedFrameConfig` is returned from a source such as the [Protected Audience API](https://developers.google.com/privacy-sandbox/relevance/protected-audience).
- {{domxref("HTMLFencedFrameElement.height")}} {{experimental_inline}}
- : Gets and sets the value of the corresponding `<fencedframe>` `height` attribute, which specifies the height of the element.
- {{domxref("HTMLFencedFrameElement.width")}} {{experimental_inline}}
- : Gets and sets the value of the corresponding `<fencedframe>` `width` attribute, which specifies the width of the element.

## Examples

To set what content will be shown in a `<fencedframe>`, a utilizing API (such as [Protected Audience](https://developer.chrome.com/docs/privacy-sandbox/fledge/) or [Shared Storage](https://developer.chrome.com/docs/privacy-sandbox/shared-storage/)) generates a {{domxref("FencedFrameConfig")}} object, which is then set as the value of the `<fencedframe>`'s `config` property.
To set what content will be shown in a `<fencedframe>`, a utilizing API (such as [Protected Audience](https://developers.google.com/privacy-sandbox/relevance/protected-audience) or [Shared Storage](https://developers.google.com/privacy-sandbox/relevance/shared-storage)) generates a {{domxref("FencedFrameConfig")}} object, which is then set as the value of the `<fencedframe>`'s `config` property.

The following example gets a `FencedFrameConfig` from a Protected Audience API's ad auction, which is then used to display the winning ad in a `<fencedframe>`:

Expand All @@ -54,5 +54,5 @@ frame.config = frameConfig;

## See also

- [Fenced frames](https://developer.chrome.com/docs/privacy-sandbox/fenced-frame/) on developer.chrome.com
- [The Privacy Sandbox](https://developer.chrome.com/docs/privacy-sandbox/) on developer.chrome.com
- [Fenced frames](https://developers.google.com/privacy-sandbox/relevance/fenced-frame) on developers.google.com
- [The Privacy Sandbox](https://developers.google.com/privacy-sandbox) on developers.google.com
4 changes: 2 additions & 2 deletions files/en-us/web/api/htmlfencedframeelement/width/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@ frame.width = "480";

## See also

- [Fenced frames](https://developer.chrome.com/docs/privacy-sandbox/fenced-frame/) on developer.chrome.com
- [The Privacy Sandbox](https://developer.chrome.com/docs/privacy-sandbox/) on developer.chrome.com
- [Fenced frames](https://developers.google.com/privacy-sandbox/relevance/fenced-frame) on developers.google.com
- [The Privacy Sandbox](https://developers.google.com/privacy-sandbox) on developers.google.com
2 changes: 1 addition & 1 deletion files/en-us/web/api/idbkeyrange/loweropen/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ the range.

> [!NOTE]
> For a more complete example allowing you to experiment with
> key range, have a look at our [IDBKeyRange-example](https://github.com/mdn/dom-examples/blob/main/indexeddb-examples/idbkeyrange) repo ([view the example live too](https://mdn.github.io/dom-examples/indexeddb-examples/idbkeyrange/).)
> key range, have a look at our [IDBKeyRange-example](https://github.com/mdn/dom-examples/tree/main/indexeddb-examples/idbkeyrange) repo ([view the example live too](https://mdn.github.io/dom-examples/indexeddb-examples/idbkeyrange/).)
```js
function displayData() {
Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/idbkeyrange/upperopen/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ the range.

> [!NOTE]
> For a more complete example allowing you to experiment with
> key range, have a look at our [IDBKeyRange-example](https://github.com/mdn/dom-examples/blob/main/indexeddb-examples/idbkeyrange) repo ([view the example live too](https://mdn.github.io/dom-examples/indexeddb-examples/idbkeyrange/).)
> key range, have a look at our [IDBKeyRange-example](https://github.com/mdn/dom-examples/tree/main/indexeddb-examples/idbkeyrange) repo ([view the example live too](https://mdn.github.io/dom-examples/indexeddb-examples/idbkeyrange/).)
```js
function displayData() {
Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/identitycredential/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,4 @@ Check out [Federated Credential Management API (FedCM)](/en-US/docs/Web/API/FedC

## See also

- [Federated Credential Management API](https://developer.chrome.com/docs/privacy-sandbox/fedcm/)
- [Federated Credential Management API](https://developers.google.com/privacy-sandbox/3pcd/fedcm)
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,4 @@ Check out [Federated Credential Management API (FedCM)](/en-US/docs/Web/API/FedC

## See also

- [Federated Credential Management API](https://developer.chrome.com/docs/privacy-sandbox/fedcm/)
- [Federated Credential Management API](https://developers.google.com/privacy-sandbox/3pcd/fedcm)
2 changes: 1 addition & 1 deletion files/en-us/web/api/identitycredential/token/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,4 +61,4 @@ Check out [Federated Credential Management API (FedCM)](/en-US/docs/Web/API/FedC

## See also

- [Federated Credential Management API](https://developer.chrome.com/docs/privacy-sandbox/fedcm/)
- [Federated Credential Management API](https://developers.google.com/privacy-sandbox/3pcd/fedcm)
2 changes: 1 addition & 1 deletion files/en-us/web/api/identityprovider/close_static/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,4 @@ IdentityProvider.close();

## See also

- [Federated Credential Management API](https://developer.chrome.com/docs/privacy-sandbox/fedcm/) on developer.chrome.com (2023)
- [Federated Credential Management API](https://developers.google.com/privacy-sandbox/3pcd/fedcm) on developers.google.com (2023)
Original file line number Diff line number Diff line change
Expand Up @@ -101,4 +101,4 @@ if (user_info.length > 0) {

## See also

- [Federated Credential Management API](https://developer.chrome.com/docs/privacy-sandbox/fedcm/) on developer.chrome.com (2023)
- [Federated Credential Management API](https://developers.google.com/privacy-sandbox/3pcd/fedcm) on developers.google.com (2023)
2 changes: 1 addition & 1 deletion files/en-us/web/api/identityprovider/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,4 @@ if (user_info.length > 0) {

## See also

- [Federated Credential Management API](https://developer.chrome.com/docs/privacy-sandbox/fedcm/) on developer.chrome.com (2023)
- [Federated Credential Management API](https://developers.google.com/privacy-sandbox/3pcd/fedcm) on developers.google.com (2023)
Original file line number Diff line number Diff line change
Expand Up @@ -181,4 +181,4 @@ With an understanding of IndexedDB's key characteristics and core terminology un
- [Indexed Database API Specification](https://www.w3.org/TR/IndexedDB/)
- [IndexedDB API Reference](/en-US/docs/Web/API/IndexedDB_API)
- [Using IndexedDB](/en-US/docs/Web/API/IndexedDB_API/Using_IndexedDB)
- [IndexedDB — The Store in Your Browser](<https://docs.microsoft.com/previous-versions/msdn10/gg679063(v=msdn.10)>)
- [IndexedDB — The Store in Your Browser](<https://learn.microsoft.com/en-us/previous-versions/msdn10/gg679063(v=msdn.10)>)
2 changes: 1 addition & 1 deletion files/en-us/web/api/indexeddb_api/using_indexeddb/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -648,7 +648,7 @@ Further reading for you to find out more information if desired.
### Tutorials and guides

- [Databinding UI Elements with IndexedDB (2012)](https://web.dev/articles/indexeddb-uidatabinding)
- [IndexedDB — The Store in Your Browser](<https://docs.microsoft.com/previous-versions/msdn10/gg679063(v=msdn.10)>)
- [IndexedDB — The Store in Your Browser](<https://learn.microsoft.com/en-us/previous-versions/msdn10/gg679063(v=msdn.10)>)

### Libraries

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/keyboardevent/keycode/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3308,4 +3308,4 @@ On Windows, some values of virtual keycode are defined (reserved) for OEM specif

Starting Gecko 21 (and older than 15), OEM specific key values are available on the keyCode attribute only on Windows. So they are not useful for usual web applications. They are useful only for intranet applications or in similar situations.

See "[Manufacturer-specific Virtual-Key Codes (Windows CE 5.0)](<https://docs.microsoft.com/previous-versions/windows/embedded/aa452679(v=msdn.10)>)" in MSDN for the detail.
See "[Manufacturer-specific Virtual-Key Codes (Windows CE 5.0)](<https://learn.microsoft.com/en-us/previous-versions/windows/embedded/aa452679(v=msdn.10)>)" in MSDN for the detail.
2 changes: 1 addition & 1 deletion files/en-us/web/api/midiinput/midimessage_event/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ An {{domxref("MIDIMessageEvent")}}. Inherits from {{domxref("Event")}}.
_This interface also inherits properties from {{domxref("Event")}}._

- {{domxref("MIDIMessageEvent.data")}}
- : A {{jsxref("Uint8Array")}} containing the data bytes of a single MIDI message. See the [MIDI specification](https://www.midi.org/specifications-old/item/table-1-summary-of-midi-message) for more information on its form.
- : A {{jsxref("Uint8Array")}} containing the data bytes of a single MIDI message. See the [MIDI specification](https://midi.org/summary-of-midi-1-0-messages) for more information on its form.

## Examples

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/midimessageevent/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ The **`MIDIMessageEvent`** interface of the [Web MIDI API](/en-US/docs/Web/API/W
_This interface also inherits properties from {{domxref("Event")}}._

- {{domxref("MIDIMessageEvent.data")}}
- : A {{jsxref("Uint8Array")}} containing the data bytes of a single MIDI message. See the [MIDI specification](https://www.midi.org/specifications-old/item/table-1-summary-of-midi-message) for more information on its form.
- : A {{jsxref("Uint8Array")}} containing the data bytes of a single MIDI message. See the [MIDI specification](https://midi.org/summary-of-midi-1-0-messages) for more information on its form.

## Instance methods

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/midioutput/send/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ send(data, timestamp)
### Parameters

- `data`
- : A sequence of one or more [valid MIDI messages](https://www.midi.org/midi-articles/about-midi-part-3-midi-messages). Each entry represents a single byte of data.
- : A sequence of one or more [valid MIDI messages](https://midi.org/about-midi-part-3midi-messages). Each entry represents a single byte of data.
- `timestamp` {{optional_inline}}
- : A {{domxref("DOMHighResTimestamp")}} with the time in milliseconds when the message should be sent (relative to {{domxref("Performance.timeOrigin")}}).

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/mutationevent/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The **`MutationEvent`** interface provides event properties that are specific to
> Using _mutation events_ is problematic:
>
> - Their design is [flawed](https://lists.w3.org/Archives/Public/public-webapps/2011JulSep/0779.html).
> - Adding DOM mutation listeners to a document [profoundly degrades the performance](https://groups.google.com/d/topic/mozilla.dev.platform/L0Lx11u5Bvs?pli=1) of further DOM modifications to that document (making them 1.5 - 7 times slower!). Moreover, removing the listeners does not reverse the damage.
> - Adding DOM mutation listeners to a document [profoundly degrades the performance](https://groups.google.com/g/mozilla.dev.platform/c/L0Lx11u5Bvs?pli=1) of further DOM modifications to that document (making them 1.5 - 7 times slower!). Moreover, removing the listeners does not reverse the damage.
> - They have poor cross-browser compatibility: Safari doesn't support `DOMAttrModified` (see [WebKit bug 8191](https://webkit.org/b/8191)) and Firefox doesn't support _mutation name events_ (like `DOMElementNameChanged` and `DOMAttributeNameChanged`).
>
> They have been deprecated in favor of [mutation observers](/en-US/docs/Web/API/MutationObserver). **Consider using these instead.**
Expand Down
6 changes: 3 additions & 3 deletions files/en-us/web/api/navigationpreloadmanager/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ This might be used, for example, to reduce the data sent to just part of the ori

## Examples

The examples here are from [Speed up Service Worker with Navigation Preloads](https://developer.chrome.com/blog/navigation-preload/) (developer.chrome.com).
The examples here are from [Speed up Service Worker with Navigation Preloads](https://web.dev/blog/navigation-preload) (developer.chrome.com).

### Feature detection and enabling navigation preloading

Expand Down Expand Up @@ -116,7 +116,7 @@ navigator.serviceWorker.ready
});
```

[Speed up Service Worker with Navigation Preloads > Custom responses for preloads](https://developer.chrome.com/blog/navigation-preload/) provides a more complete example of a site where the response for an article web page is constructed from a cached header and footer, so that only the article content is returned for a prefetch.
[Speed up Service Worker with Navigation Preloads > Custom responses for preloads](https://web.dev/blog/navigation-preload) provides a more complete example of a site where the response for an article web page is constructed from a cached header and footer, so that only the article content is returned for a prefetch.

### Getting the state

Expand Down Expand Up @@ -144,4 +144,4 @@ navigator.serviceWorker.ready

## See also

- [Speed up Service Worker with Navigation Preloads](https://developer.chrome.com/blog/navigation-preload/) (developer.chrome.com)
- [Speed up Service Worker with Navigation Preloads](https://web.dev/blog/navigation-preload) (developer.chrome.com)
Loading

0 comments on commit f2088b8

Please sign in to comment.