diff --git a/core/misc/jquery.tabbable.shim.es6.js b/core/misc/jquery.tabbable.shim.es6.js
index de8d043e7423a4df5da312049a4d49de11694eac..6820cd1b1ff7585e5856ca648f27e490389e289c 100644
--- a/core/misc/jquery.tabbable.shim.es6.js
+++ b/core/misc/jquery.tabbable.shim.es6.js
@@ -8,7 +8,7 @@
     tabbable(element) {
       Drupal.deprecationError({
         message:
-          'The :tabbable selector is deprecated in Drupal 9.2.0 and will be removed in Drupal 10.0.0. Use the core/tabbable library instead. See https://www.drupal.org/node/3183730',
+          'The :tabbable selector is deprecated in Drupal 9.2.0 and will be removed in Drupal 11.0.0. Use the core/tabbable library instead. See https://www.drupal.org/node/3183730',
       });
 
       // The tabbable library considers the summary element tabbable, and also
diff --git a/core/misc/jquery.tabbable.shim.js b/core/misc/jquery.tabbable.shim.js
index c5c9fcbf447ce637f17f265ea39ec76d7c72c363..bd4174214c2e87967fca3f3bbb87058af5a200ee 100644
--- a/core/misc/jquery.tabbable.shim.js
+++ b/core/misc/jquery.tabbable.shim.js
@@ -12,7 +12,7 @@
   $.extend($.expr[':'], {
     tabbable(element) {
       Drupal.deprecationError({
-        message: 'The :tabbable selector is deprecated in Drupal 9.2.0 and will be removed in Drupal 10.0.0. Use the core/tabbable library instead. See https://www.drupal.org/node/3183730'
+        message: 'The :tabbable selector is deprecated in Drupal 9.2.0 and will be removed in Drupal 11.0.0. Use the core/tabbable library instead. See https://www.drupal.org/node/3183730'
       });
 
       if (element.tagName === 'SUMMARY' || element.tagName === 'DETAILS') {
diff --git a/core/tests/Drupal/Nightwatch/Tests/tabbableShimTest.js b/core/tests/Drupal/Nightwatch/Tests/tabbableShimTest.js
index cbcd97aa5a4c97c0106f9a3908765c13fa45e6a9..02146df2f567d33006620ffddb49f2242d941c04 100644
--- a/core/tests/Drupal/Nightwatch/Tests/tabbableShimTest.js
+++ b/core/tests/Drupal/Nightwatch/Tests/tabbableShimTest.js
@@ -305,7 +305,7 @@ module.exports = {
       );
     });
     browser.assert.deprecationErrorExists(
-      'The :tabbable selector is deprecated in Drupal 9.2.0 and will be removed in Drupal 10.0.0. Use the core/tabbable library instead. See https://www.drupal.org/node/3183730',
+      'The :tabbable selector is deprecated in Drupal 9.2.0 and will be removed in Drupal 11.0.0. Use the core/tabbable library instead. See https://www.drupal.org/node/3183730',
     );
     browser.drupalLogAndEnd({ onlyOnError: false });
   },
@@ -338,7 +338,7 @@ module.exports = {
       );
     });
     browser.assert.deprecationErrorExists(
-      'The :tabbable selector is deprecated in Drupal 9.2.0 and will be removed in Drupal 10.0.0. Use the core/tabbable library instead. See https://www.drupal.org/node/3183730',
+      'The :tabbable selector is deprecated in Drupal 9.2.0 and will be removed in Drupal 11.0.0. Use the core/tabbable library instead. See https://www.drupal.org/node/3183730',
     );
     browser.drupalLogAndEnd({ onlyOnError: false });
   },