diff --git a/core/modules/file/src/Element/ManagedFile.php b/core/modules/file/src/Element/ManagedFile.php
index 7b80af79ebfbda85e7b104ff3b86a994d950c3f9..8abd25101478de154652b0b1b2be4096ff395f16 100644
--- a/core/modules/file/src/Element/ManagedFile.php
+++ b/core/modules/file/src/Element/ManagedFile.php
@@ -326,7 +326,7 @@ public static function processManagedFile(&$element, FormStateInterface $form_st
     }
 
     if (!empty($element['#accept'])) {
-      $element['upload']['#attributes'] = ['accept' => $element['#accept']];
+      $element['upload']['#attributes']['accept'] = $element['#accept'];
     }
 
     // Indicate that $element['#title'] should be used as the HTML label for the
diff --git a/core/modules/image/tests/src/Functional/ImageFieldWidgetTest.php b/core/modules/image/tests/src/Functional/ImageFieldWidgetTest.php
index 2bf7c652ea495b4baf50fbf8ec6428af5da2fcd9..dd2e6929a97b483f3cf9f841808fcbf2b722c886 100644
--- a/core/modules/image/tests/src/Functional/ImageFieldWidgetTest.php
+++ b/core/modules/image/tests/src/Functional/ImageFieldWidgetTest.php
@@ -27,6 +27,7 @@ public function testWidgetElement(): void {
     $min_resolution = 50;
     $max_resolution = 100;
     $field_settings = [
+      'description' => 'test description',
       'max_resolution' => $max_resolution . 'x' . $max_resolution,
       'min_resolution' => $min_resolution . 'x' . $min_resolution,
       'alt_field' => 0,
@@ -36,7 +37,7 @@ public function testWidgetElement(): void {
     // Verify that the image field widget is found on add/node page.
     $this->assertSession()->elementExists('xpath', '//div[contains(@class, "field--widget-image-image")]');
     // Verify that the image field widget limits accepted files.
-    $this->assertSession()->elementExists('xpath', '//input[contains(@accept, "image/*")]');
+    $this->assertSession()->elementExists('xpath', '//input[@aria-describedby][contains(@accept, "image/*")]');
     $this->assertSession()->pageTextNotContains('Image test on [site:name]');
 
     // Check for allowed image file extensions - default.