We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 325b7ac + 908dfce commit 1c15e66Copy full SHA for 1c15e66
lib/commons/dom/is-in-text-block.js
@@ -5,7 +5,12 @@ import getRoleType from '../aria/get-role-type';
5
6
function walkDomNode(node, functor) {
7
if (functor(node.actualNode) !== false) {
8
- node.children.forEach(child => walkDomNode(child, functor));
+ if (
9
+ functor(node.actualNode) !== false &&
10
+ node.actualNode.nodeName !== 'STYLE'
11
+ ) {
12
+ node.children.forEach(child => walkDomNode(child, functor));
13
+ }
14
}
15
16
0 commit comments