From 0660baa4550fe71ff2cd404d217a26ae9a865c3d Mon Sep 17 00:00:00 2001 From: michael-n-cooper-bot Date: Tue, 8 Aug 2023 18:24:39 +0000 Subject: [PATCH] Commit changed files and submodule updates --- _external/aria-practices | 2 +- _external/data | 2 +- .../patterns/treegrid/examples/js/treegrid-1.js | 4 +++- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/_external/aria-practices b/_external/aria-practices index 34bf3476c..a5c1e46a2 160000 --- a/_external/aria-practices +++ b/_external/aria-practices @@ -1 +1 @@ -Subproject commit 34bf3476ce808886d34934b8f6931e8d3b764607 +Subproject commit a5c1e46a2c3fbe9d544517c9bc8053af0731c562 diff --git a/_external/data b/_external/data index 894dca0e8..3e2c9fde3 160000 --- a/_external/data +++ b/_external/data @@ -1 +1 @@ -Subproject commit 894dca0e8b4f6d90d622fbb87e356b9e6713042f +Subproject commit 3e2c9fde38da2f50b1613a45a76bb0c03e463020 diff --git a/content-assets/wai-aria-practices/patterns/treegrid/examples/js/treegrid-1.js b/content-assets/wai-aria-practices/patterns/treegrid/examples/js/treegrid-1.js index e973bb74b..ff6c9fce0 100644 --- a/content-assets/wai-aria-practices/patterns/treegrid/examples/js/treegrid-1.js +++ b/content-assets/wai-aria-practices/patterns/treegrid/examples/js/treegrid-1.js @@ -51,7 +51,9 @@ function TreeGrid(treegridElem, doAllowRowFocus, doStartRowFocus) { // textarea not supported as a cell widget as it's multiple lines // and needs up/down keys // These should all be descendants of a cell - var nodeList = root.querySelectorAll('a,button,input,td>[tabindex]'); + var nodeList = root.querySelectorAll( + 'a,button,input,select,textarea,td>[tabindex]' + ); return Array.prototype.slice.call(nodeList); }