Skip to content

Commit 019ca3c

Browse files
committed
add tests (adapter class wip)
1 parent c97df4c commit 019ca3c

File tree

3 files changed

+428
-5
lines changed

3 files changed

+428
-5
lines changed

src/material-experimental/mdc-progress-spinner/progress-spinner.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<ng-template #circle>
22
<svg [attr.viewBox]="_viewBox()" class="mdc-circular-progress__indeterminate-circle-graphic"
3-
xmlns="http://www.w3.org/2000/svg">
3+
xmlns="http://www.w3.org/2000/svg" focusable="false">
44
<circle [attr.r]="_circleRadius()"
55
[style.stroke-dasharray.px]="_strokeCircumference()"
66
[style.stroke-dashoffset.px]="_strokeCircumference()/2"
@@ -12,7 +12,7 @@
1212
<div class="mdc-circular-progress" role="progressbar" #spinnerRoot>
1313
<div class="mdc-circular-progress__determinate-container" #determinateSpinner>
1414
<svg [attr.viewBox]="_viewBox()" class="mdc-circular-progress__determinate-circle-graphic"
15-
xmlns="http://www.w3.org/2000/svg">
15+
xmlns="http://www.w3.org/2000/svg" focusable="false">
1616
<circle [attr.r]="_circleRadius()"
1717
[style.stroke-dasharray.px]="_strokeCircumference()"
1818
[style.stroke-dashoffset.px]="_strokeDashOffset()"

0 commit comments

Comments
 (0)