diff --git a/.vscode/ignore-list.txt b/.vscode/ignore-list.txt index ce2c9fe22281dd7..864ffbcec01d1a7 100644 --- a/.vscode/ignore-list.txt +++ b/.vscode/ignore-list.txt @@ -91,6 +91,7 @@ addevent addeventlistener addgamepad Addis +addpipe addressbar addsourcebuffer addstream @@ -239,6 +240,7 @@ APPCOMMAND appcontent Appelquist appinstalled +Appium applicationcache appname appshell @@ -2009,6 +2011,7 @@ hexdigit Hextris Heydings Heydon +heydonworks HHMM Hickson's Hidde @@ -3856,6 +3859,7 @@ protan protanomaly PROTO Proxied +proxified proxify proxyfied proxyhandler diff --git a/files/en-us/web/api/clipboarditem/clipboarditem/index.md b/files/en-us/web/api/clipboarditem/clipboarditem/index.md index f4d9b630d0717e8..3d7958bc21d777f 100644 --- a/files/en-us/web/api/clipboarditem/clipboarditem/index.md +++ b/files/en-us/web/api/clipboarditem/clipboarditem/index.md @@ -34,7 +34,7 @@ new ClipboardItem(data, options) - : One of the three strings: `unspecified`, `inline` or `attachment`. The default is `unspecified`. - `inline` signifies to apps that recieve the paste that the `ClipboardItem` should be inserted inline at the point of paste. `attachment` signifies to apps that recieve the paste that the `ClipboardItem` should be added as an attachment. `unspecified` doesn't signify any information to apps that recieve the paste. + `inline` signifies to apps that receive the paste that the `ClipboardItem` should be inserted inline at the point of paste. `attachment` signifies to apps that receive the paste that the `ClipboardItem` should be added as an attachment. `unspecified` doesn't signify any information to apps that receive the paste. > [!NOTE] > You can also work with text via the {{domxref("Clipboard.readText()")}} and {{domxref("Clipboard.writeText()")}} methods of the {{domxref("Clipboard")}} interface. diff --git a/files/en-us/web/api/gpucanvascontext/configure/index.md b/files/en-us/web/api/gpucanvascontext/configure/index.md index fb2310a1db5e88b..d94fad47349b70e 100644 --- a/files/en-us/web/api/gpucanvascontext/configure/index.md +++ b/files/en-us/web/api/gpucanvascontext/configure/index.md @@ -41,11 +41,11 @@ configure(configuration) - : An object specifying parameters that define the tone mapping for the context — how the content of associated textures are to be displayed. This allows WebGPU to draw colors brighter than `white` (`#FFFFFF`). Possible properties are: - `mode` {{optional_inline}} - - : An emumerated value specifying the tone mapping mode for the canvas. Possible values include: + - : An enumerated value specifying the tone mapping mode for the canvas. Possible values include: - `standard` - : The default value. Restricts rendered content to the Standard Dynamic Range (SDR) of the display. This mode is accomplished by clamping all color values in the color space of the screen to the `[0, 1]` interval. - `extended` - - : Allows content to be rendered in the full High Dynamic Range (HDR) of the display, where available. HDR mode allows a wider range of colors and brightness levels to be diplayed, with more precise instructions as to what color should be displayed in each case. This mode matches `"standard"` in the `[0, 1]` range of the screen. Clamping or projection is done to the extended dynamic range of the screen but not `[0, 1]`. + - : Allows content to be rendered in the full High Dynamic Range (HDR) of the display, where available. HDR mode allows a wider range of colors and brightness levels to be displayed, with more precise instructions as to what color should be displayed in each case. This mode matches `"standard"` in the `[0, 1]` range of the screen. Clamping or projection is done to the extended dynamic range of the screen but not `[0, 1]`. - `usage` {{optional_inline}}