Skip to content

Commit 05ab086

Browse files
committed
fix(material/progress-bar): Support ChromeVox
1 parent b4fafda commit 05ab086

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/material/progress-bar/progress-bar.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
The background div is named as such because it appears below the other divs and is not sized based
33
on values.
44
-->
5-
<svg width="100%" height="4" focusable="false" class="mat-progress-bar-background mat-progress-bar-element">
5+
<svg width="100%" height="4" focusable="false" class="mat-progress-bar-background mat-progress-bar-element" aria-hidden="true">
66
<defs>
77
<pattern [id]="progressbarId" x="4" y="0" width="8" height="4" patternUnits="userSpaceOnUse">
88
<circle cx="2" cy="2" r="2"/>
99
</pattern>
1010
</defs>
1111
<rect [attr.fill]="_rectangleFillValue" width="100%" height="100%"/>
1212
</svg>
13-
<div class="mat-progress-bar-buffer mat-progress-bar-element" [ngStyle]="_bufferTransform()"></div>
14-
<div class="mat-progress-bar-primary mat-progress-bar-fill mat-progress-bar-element" [ngStyle]="_primaryTransform()" #primaryValueBar></div>
15-
<div class="mat-progress-bar-secondary mat-progress-bar-fill mat-progress-bar-element"></div>
13+
<div class="mat-progress-bar-buffer mat-progress-bar-element" [ngStyle]="_bufferTransform()" aria-hidden="true"></div>
14+
<div class="mat-progress-bar-primary mat-progress-bar-fill mat-progress-bar-element" [ngStyle]="_primaryTransform()" #primaryValueBar aria-hidden="true"></div>
15+
<div class="mat-progress-bar-secondary mat-progress-bar-fill mat-progress-bar-element" aria-hidden="true"></div>

0 commit comments

Comments
 (0)