From 905eff94af67c237fa6982e2940de99d1d748987 Mon Sep 17 00:00:00 2001 From: Dave Letorey Date: Tue, 18 Nov 2025 16:11:33 +0000 Subject: [PATCH 1/4] added release note for display-p3-linear color space --- files/en-us/mozilla/firefox/releases/146/index.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/files/en-us/mozilla/firefox/releases/146/index.md b/files/en-us/mozilla/firefox/releases/146/index.md index ac9bcf31d0fbf41..82df04734d57dcc 100644 --- a/files/en-us/mozilla/firefox/releases/146/index.md +++ b/files/en-us/mozilla/firefox/releases/146/index.md @@ -37,6 +37,9 @@ Firefox 146 is the current [Beta version of Firefox](https://www.firefox.com/en- - The {{cssxref("color_value/contrast-color()")}} [CSS function](/en-US/docs/Web/CSS/Reference/Values/Functions) is now supported. This function takes a {{cssxref("color_value","color")}} value and returns a contrasting color that ensures at least [WCAG AA minimum contrast](https://w3c.github.io/wcag/guidelines/22/#contrast-minimum). ([Firefox bug 1682439](https://bugzil.la/1682439)). +- The CSS {{cssxref("color_value")}} now supports the `display-p3-linear` color space. The `display-p3-linear` color space is the same as `display-p3` except that the transfer function is linear-light and there is no gamma-encoding meaning there is a higher precision in the colors displayed. + ([Firefox bug 1996318](https://bugzil.la/1996318)). + - The {{cssxref("text-decoration-inset")}} property is now supported, which enables adjusting the start and end points of an element's {{cssxref("text-decoration")}} so it can be shortened, lengthened, or have its position shifted with respect to the rendered text. ([Firefox bug 1979915](https://bugzil.la/1979915), [Firefox bug 1997157](https://bugzil.la/1997157), [Firefox bug 1993043](https://bugzil.la/1993043)). From bc301a535dd5ff2ff442c8d4de1e81368b58ae26 Mon Sep 17 00:00:00 2001 From: Dave Letorey Date: Tue, 18 Nov 2025 19:57:43 +0000 Subject: [PATCH 2/4] Update files/en-us/mozilla/firefox/releases/146/index.md Co-authored-by: Dipika Bhattacharya --- files/en-us/mozilla/firefox/releases/146/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/en-us/mozilla/firefox/releases/146/index.md b/files/en-us/mozilla/firefox/releases/146/index.md index 82df04734d57dcc..f782c79f4c3d9da 100644 --- a/files/en-us/mozilla/firefox/releases/146/index.md +++ b/files/en-us/mozilla/firefox/releases/146/index.md @@ -37,7 +37,7 @@ Firefox 146 is the current [Beta version of Firefox](https://www.firefox.com/en- - The {{cssxref("color_value/contrast-color()")}} [CSS function](/en-US/docs/Web/CSS/Reference/Values/Functions) is now supported. This function takes a {{cssxref("color_value","color")}} value and returns a contrasting color that ensures at least [WCAG AA minimum contrast](https://w3c.github.io/wcag/guidelines/22/#contrast-minimum). ([Firefox bug 1682439](https://bugzil.la/1682439)). -- The CSS {{cssxref("color_value")}} now supports the `display-p3-linear` color space. The `display-p3-linear` color space is the same as `display-p3` except that the transfer function is linear-light and there is no gamma-encoding meaning there is a higher precision in the colors displayed. +- The [``](/en-US/docs/Web/CSS/Reference/Values/color_value) data type now supports the `display-p3-linear` color space. This space is similar to [`display-p3`](/en-US/docs/Glossary/Color_space#display-p3), except that it uses a linear-light transfer function and has no gamma-encoding, which allows for a higher precision in the colors displayed. ([Firefox bug 1996318](https://bugzil.la/1996318)). - The {{cssxref("text-decoration-inset")}} property is now supported, which enables adjusting the start and end points of an element's {{cssxref("text-decoration")}} so it can be shortened, lengthened, or have its position shifted with respect to the rendered text. From a83a9711d50be5bf8231817c94e96c3df943f5ef Mon Sep 17 00:00:00 2001 From: Dave Letorey Date: Tue, 18 Nov 2025 19:57:56 +0000 Subject: [PATCH 3/4] Update files/en-us/mozilla/firefox/releases/146/index.md Co-authored-by: Dipika Bhattacharya --- files/en-us/mozilla/firefox/releases/146/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/en-us/mozilla/firefox/releases/146/index.md b/files/en-us/mozilla/firefox/releases/146/index.md index f782c79f4c3d9da..72e9d7400dfdb67 100644 --- a/files/en-us/mozilla/firefox/releases/146/index.md +++ b/files/en-us/mozilla/firefox/releases/146/index.md @@ -40,7 +40,7 @@ Firefox 146 is the current [Beta version of Firefox](https://www.firefox.com/en- - The [``](/en-US/docs/Web/CSS/Reference/Values/color_value) data type now supports the `display-p3-linear` color space. This space is similar to [`display-p3`](/en-US/docs/Glossary/Color_space#display-p3), except that it uses a linear-light transfer function and has no gamma-encoding, which allows for a higher precision in the colors displayed. ([Firefox bug 1996318](https://bugzil.la/1996318)). -- The {{cssxref("text-decoration-inset")}} property is now supported, which enables adjusting the start and end points of an element's {{cssxref("text-decoration")}} so it can be shortened, lengthened, or have its position shifted with respect to the rendered text. +- The [`text-decoration-inset`](/en-US/docs/Web/CSS/Reference/Properties/text-decoration-inset) property is now supported, which enables adjusting the start and end points of an element's {{cssxref("text-decoration")}} so it can be shortened, lengthened, or have its position shifted with respect to the rendered text. ([Firefox bug 1979915](https://bugzil.la/1979915), [Firefox bug 1997157](https://bugzil.la/1997157), [Firefox bug 1993043](https://bugzil.la/1993043)). - The {{cssxref("@scope")}} [at-rule](/en-US/docs/Web/CSS/Guides/Syntax/At-rules) is now supported by default. This enables you to select elements in specific DOM subtrees, targeting elements precisely without writing overly-specific selectors that are hard to override, and without coupling your selectors too tightly to the DOM structure. ([Firefox bug 1991105](https://bugzil.la/1991105)). From 139c05e546e29318602da595f8af45db00050a62 Mon Sep 17 00:00:00 2001 From: Dave Letorey Date: Tue, 18 Nov 2025 19:58:08 +0000 Subject: [PATCH 4/4] Update files/en-us/mozilla/firefox/releases/146/index.md Co-authored-by: Dipika Bhattacharya --- files/en-us/mozilla/firefox/releases/146/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/en-us/mozilla/firefox/releases/146/index.md b/files/en-us/mozilla/firefox/releases/146/index.md index 72e9d7400dfdb67..b5e207545b0f92a 100644 --- a/files/en-us/mozilla/firefox/releases/146/index.md +++ b/files/en-us/mozilla/firefox/releases/146/index.md @@ -34,7 +34,7 @@ Firefox 146 is the current [Beta version of Firefox](https://www.firefox.com/en- ### CSS -- The {{cssxref("color_value/contrast-color()")}} [CSS function](/en-US/docs/Web/CSS/Reference/Values/Functions) is now supported. This function takes a {{cssxref("color_value","color")}} value and returns a contrasting color that ensures at least [WCAG AA minimum contrast](https://w3c.github.io/wcag/guidelines/22/#contrast-minimum). +- The {{cssxref("color_value/contrast-color()")}} function is now supported. This function takes a [``](/en-US/docs/Web/CSS/Reference/Values/color_value) value and returns a contrasting color that ensures at least [WCAG AA minimum contrast](https://w3c.github.io/wcag/guidelines/22/#contrast-minimum). ([Firefox bug 1682439](https://bugzil.la/1682439)). - The [``](/en-US/docs/Web/CSS/Reference/Values/color_value) data type now supports the `display-p3-linear` color space. This space is similar to [`display-p3`](/en-US/docs/Glossary/Color_space#display-p3), except that it uses a linear-light transfer function and has no gamma-encoding, which allows for a higher precision in the colors displayed.