Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,10 @@ When calling `tabs.remove()`:

### Unsupported APIs

#### Debugger API

- **In Firefox:** Chrome's [debugger](https://developer.chrome.com/docs/extensions/reference/api/debugger) API [is not implemented](https://bugzil.la/1316741).

#### DeclarativeContent API

- **In Firefox:** Chrome's [declarativeContent](https://developer.chrome.com/docs/extensions/reference/api/declarativeContent) API [is not implemented](https://bugzil.la/1435864). In addition, Firefox [will not support](https://bugzil.la/1323433#c16) the `declarativeContent.RequestContentScript` API (which is rarely used and is unavailable in stable releases of Chrome).
Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/canvasrenderingcontext2d/clip/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ ctx.fillRect(0, 0, canvas.width, canvas.height);

### Creating a complex clipping region

This example uses two paths, a rectangle and a square to create a complex clipping
This example uses two paths, a circle and a square to create a complex clipping
region. The `clip()` method is called twice, first to set the current
clipping region to the circle using a `Path2D` object, then again to
intersect the circle clipping region with a square. The final clipping region is a shape
Expand Down
4 changes: 2 additions & 2 deletions files/en-us/web/css/guides/grid_layout/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ This sample animation uses {{cssxref("display")}}, {{cssxref("grid-template-colu

- {{cssxref("repeat()")}}
- {{cssxref("minmax()")}}
- {{cssxref("fit-content()")}}
- {{cssxref("fit-content_function", "fit-content()")}}

### Data types and values

Expand Down Expand Up @@ -197,7 +197,7 @@ This sample animation uses {{cssxref("display")}}, {{cssxref("grid-template-colu
- {{cssxref("min-content")}} value
- {{cssxref("max-content")}} value
- {{cssxref("fit-content")}} value
- {{cssxref("fit-content()")}} function
- {{cssxref("fit-content_function", "fit-content()")}} function

## Specifications

Expand Down
6 changes: 3 additions & 3 deletions files/en-us/web/css/reference/values/functions/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ The following functions are used as a value of properties to reference a value d

The following functions are used to define a [CSS grid](/en-US/docs/Web/CSS/Guides/Grid_layout):

- {{cssxref("fit-content()")}}
- {{cssxref("fit-content_function", "fit-content()")}}
- : Clamps a given size to an available size according to the formula `min(maximum size, max(minimum size, argument))`.
- {{cssxref("minmax()")}}
- : Defines a size range greater-than or equal-to _min_ and less-than or equal-to _max_.
Expand Down Expand Up @@ -401,7 +401,7 @@ The following functions return an integer value based on the DOM tree, rather th
- {{cssxref("basic-shape/ellipse", "ellipse()")}}
- {{cssxref("env")}}
- {{cssxref("exp")}}
- {{cssxref("fit-content()")}}
- {{cssxref("fit-content_function", "fit-content()")}}
- {{cssxref("filter-function/grayscale", "grayscale()")}}
- {{cssxref("color_value/hsl", "hsl()")}}
- {{cssxref("filter-function/hue-rotate", "hue-rotate()")}}
Expand Down Expand Up @@ -477,7 +477,7 @@ The following functions return an integer value based on the DOM tree, rather th
- {{cssxref("transform-function/translateY", "translateY()")}}
- {{cssxref("transform-function/translateZ", "translateZ()")}}
- {{cssxref("type")}} {{experimental_inline}}
- {{cssxref("url_function")}}
- {{cssxref("url_function", "url()")}}
- {{cssxref("var")}}
- {{cssxref("animation-timeline/view", "view()")}}
- {{cssxref("basic-shape/xywh", "xywh()")}}
Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/css/reference/values/repeat/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ There is a fourth form, `<name-repeat>`, which is used to add line names to subg
- a {{cssxref("minmax()")}} function with:
- `min` given as a {{cssxref("&lt;length-percentage&gt;")}} value, or one of the following keywords: [`min-content`](#min-content), [`max-content`](#max-content), or [`auto`](#auto)
- `max` given as a {{cssxref("&lt;length-percentage&gt;")}} value, a {{cssxref("&lt;flex&gt;")}} value, or one of the following keywords: [`min-content`](#min-content), [`max-content`](#max-content), or [`auto`](#auto)
- a {{cssxref("fit-content()")}} function, passed a {{cssxref("&lt;length-percentage&gt;")}} value.
- a {{cssxref("fit-content_function", "fit-content()")}} function, passed a {{cssxref("&lt;length-percentage&gt;")}} value.
- `auto`
- : As a maximum, identical to `max-content`. As a minimum it represents the largest minimum size (as specified by {{cssxref("min-width")}}/{{cssxref("min-height")}}) of the grid items occupying the grid track.
- `auto-fill`
Expand Down