From 8362c373289da762f5636691fc070f630678607c Mon Sep 17 00:00:00 2001 From: Evan Wallace Date: Fri, 24 Mar 2023 22:32:14 -0400 Subject: [PATCH] Chrome 112+ can now use CSS nesting --- internal/compat/css_table.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/internal/compat/css_table.go b/internal/compat/css_table.go index 9be6fb0ae55..5d920b2bb28 100644 --- a/internal/compat/css_table.go +++ b/internal/compat/css_table.go @@ -73,8 +73,10 @@ var cssTable = map[CSSFeature]map[Engine][]versionRange{ Safari: {{start: v{14, 1, 0}}}, }, - // This isn't supported anywhere right now: https://caniuse.com/css-nesting - Nesting: {}, + // Data from: https://caniuse.com/css-nesting + Nesting: { + Chrome: {{start: v{112, 0, 0}}}, + }, } // Return all features that are not available in at least one environment