From 6d9f331ed6aafed559b27a37283a02223102f22b Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Fri, 2 Jan 2026 00:17:00 +0900 Subject: [PATCH 1/3] Fix macros linking to `fit-content()` and `url()` (#42595) --- files/en-us/web/css/guides/grid_layout/index.md | 4 ++-- files/en-us/web/css/reference/values/functions/index.md | 6 +++--- files/en-us/web/css/reference/values/repeat/index.md | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/files/en-us/web/css/guides/grid_layout/index.md b/files/en-us/web/css/guides/grid_layout/index.md index 4c05e13fe923d1d..d62003c263fc7f9 100644 --- a/files/en-us/web/css/guides/grid_layout/index.md +++ b/files/en-us/web/css/guides/grid_layout/index.md @@ -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 @@ -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 diff --git a/files/en-us/web/css/reference/values/functions/index.md b/files/en-us/web/css/reference/values/functions/index.md index 7386e8f2effbd72..ffa4e16d613787e 100644 --- a/files/en-us/web/css/reference/values/functions/index.md +++ b/files/en-us/web/css/reference/values/functions/index.md @@ -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_. @@ -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()")}} @@ -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()")}} diff --git a/files/en-us/web/css/reference/values/repeat/index.md b/files/en-us/web/css/reference/values/repeat/index.md index 0766756d009561b..3f5a92ec2409232 100644 --- a/files/en-us/web/css/reference/values/repeat/index.md +++ b/files/en-us/web/css/reference/values/repeat/index.md @@ -144,7 +144,7 @@ There is a fourth form, ``, which is used to add line names to subg - a {{cssxref("minmax()")}} function with: - `min` given as a {{cssxref("<length-percentage>")}} value, or one of the following keywords: [`min-content`](#min-content), [`max-content`](#max-content), or [`auto`](#auto) - `max` given as a {{cssxref("<length-percentage>")}} value, a {{cssxref("<flex>")}} 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("<length-percentage>")}} value. + - a {{cssxref("fit-content_function", "fit-content()")}} function, passed a {{cssxref("<length-percentage>")}} 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` From 44486ddd7fdf565786160ef8beda8528f67dafee Mon Sep 17 00:00:00 2001 From: Jacob Willden <67853915+jacob-willden@users.noreply.github.com> Date: Thu, 1 Jan 2026 08:40:29 -0700 Subject: [PATCH 2/3] Add Chrome's extension debugger API as not supported in Firefox (#42589) * Add Chrome's extension debugger API as not supported in Firefox * Switch Bugzilla link to shortened redirect Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .../add-ons/webextensions/chrome_incompatibilities/index.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/files/en-us/mozilla/add-ons/webextensions/chrome_incompatibilities/index.md b/files/en-us/mozilla/add-ons/webextensions/chrome_incompatibilities/index.md index d887c933f9f7a37..5281c10bfe1af92 100644 --- a/files/en-us/mozilla/add-ons/webextensions/chrome_incompatibilities/index.md +++ b/files/en-us/mozilla/add-ons/webextensions/chrome_incompatibilities/index.md @@ -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). From 7dd8030389cfb754034e2203a0c782555f17a89f Mon Sep 17 00:00:00 2001 From: mhchem Date: Thu, 1 Jan 2026 19:38:47 +0100 Subject: [PATCH 3/3] Fix confused word (#42596) rectangle -> circle --- files/en-us/web/api/canvasrenderingcontext2d/clip/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/en-us/web/api/canvasrenderingcontext2d/clip/index.md b/files/en-us/web/api/canvasrenderingcontext2d/clip/index.md index 3c88b0064e79a08..b4fbb13dffdf9ef 100644 --- a/files/en-us/web/api/canvasrenderingcontext2d/clip/index.md +++ b/files/en-us/web/api/canvasrenderingcontext2d/clip/index.md @@ -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