Commit 1f180437992 for woocommerce

commit 1f180437992b736963e109d9373c7582cb07ee32
Author: Albert Juhé Lluveras <contact@albertjuhe.com>
Date:   Tue Jun 30 17:03:57 2026 +0200

    Mark grouped products add to cart table as presentational (#66096)

    * Mark grouped products add to cart table as presentational

    * Add changelog

diff --git a/plugins/woocommerce/changelog/fix-65094-grouped-product-a11y b/plugins/woocommerce/changelog/fix-65094-grouped-product-a11y
new file mode 100644
index 00000000000..743301b8c06
--- /dev/null
+++ b/plugins/woocommerce/changelog/fix-65094-grouped-product-a11y
@@ -0,0 +1,4 @@
+Significance: patch
+Type: fix
+
+Mark grouped products add to cart table as presentational
diff --git a/plugins/woocommerce/templates/single-product/add-to-cart/grouped.php b/plugins/woocommerce/templates/single-product/add-to-cart/grouped.php
index 4e32898adfa..ff0976a364d 100644
--- a/plugins/woocommerce/templates/single-product/add-to-cart/grouped.php
+++ b/plugins/woocommerce/templates/single-product/add-to-cart/grouped.php
@@ -12,7 +12,7 @@
  *
  * @see     https://woocommerce.com/document/template-structure/
  * @package WooCommerce\Templates
- * @version 10.2.0
+ * @version 11.0.0
  */

 defined( 'ABSPATH' ) || exit;
@@ -22,7 +22,7 @@ global $product, $post;
 do_action( 'woocommerce_before_add_to_cart_form' ); ?>

 <form class="cart grouped_form" action="<?php echo esc_url( apply_filters( 'woocommerce_add_to_cart_form_action', $product->get_permalink() ) ); ?>" method="post" enctype='multipart/form-data'>
-	<table cellspacing="0" class="woocommerce-grouped-product-list group_table">
+	<table cellspacing="0" class="woocommerce-grouped-product-list group_table" role="presentation">
 		<tbody>
 			<?php
 			$quantites_required      = false;