| Index: LayoutTests/accessibility/inline-continuations.html
|
| diff --git a/LayoutTests/accessibility/inline-continuations.html b/LayoutTests/accessibility/inline-continuations.html
|
| index 5561ff715b437780113fc65edafb8e95c4a67dcb..eec21d0d9b851461d92ac4b649e759bee1602c2b 100644
|
| --- a/LayoutTests/accessibility/inline-continuations.html
|
| +++ b/LayoutTests/accessibility/inline-continuations.html
|
| @@ -27,7 +27,7 @@ function nonGroupDescendants(elt)
|
| var count = elt.childrenCount;
|
| for (var i = 0; i < count; ++i) {
|
| var child = elt.childAtIndex(i);
|
| - if (!child.role.match(/group/i))
|
| + if (child.role != 'AXRole: AXGroup' && child.role != 'AXRole: AXInlineTextBox')
|
| result++;
|
| result += nonGroupDescendants(child);
|
| }
|
|
|