You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
axe-core didn't run in the past due to a runtime dependency
resolution error. Protractor didn't report this as an error
and silently skipped the plugin.
Now that the plugin runs again, we need to fix all axe-core
errors. We want to leave the `missing-label` rule to be active since it
could catch issues with real components.
(cherry picked from commit e902a4f)
Copy file name to clipboardExpand all lines: src/e2e-app/mdc-tabs/mdc-tabs-e2e.html
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,10 @@
3
3
<mat-tab>
4
4
<ng-templatemat-tab-label>One</ng-template>
5
5
<mat-form-field>
6
-
<textareamatInputplaceholder="Autosize textarea" cdkTextareaAutosize>This is an autosize textarea, it should adjust to the size of its content.</textarea>
6
+
<mat-label>Autosize textarea</mat-label>
7
+
<textareamatInputcdkTextareaAutosize>
8
+
This is an autosize textarea, it should adjust to the size of its content.
Copy file name to clipboardExpand all lines: src/e2e-app/tabs/tabs-e2e.html
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,10 @@
3
3
<mat-tab>
4
4
<ng-templatemat-tab-label>One</ng-template>
5
5
<mat-form-field>
6
-
<textareamatInputplaceholder="Autosize textarea" cdkTextareaAutosize>This is an autosize textarea, it should adjust to the size of its content.</textarea>
6
+
<mat-label>Autosize textarea</mat-label>
7
+
<textareamatInputcdkTextareaAutosize>
8
+
This is an autosize textarea, it should adjust to the size of its content.
0 commit comments