test, changelog

pull/8567/head
Simon Holthausen 3 years ago
parent e3a776a379
commit 728f9ac6ef

@ -2,7 +2,7 @@
## 3.59.1 (Unreleased) ## 3.59.1 (Unreleased)
* Handle dynamic values in `a11y-autocomplete-valid` ([#]) * Handle dynamic values in `a11y-autocomplete-valid` ([#8567](https://github.com/sveltejs/svelte/pull/8567))
## 3.59.0 ## 3.59.0

@ -1,3 +1,7 @@
<script>
let dynamic = '';
</script>
<!-- VALID --> <!-- VALID -->
<input type="text" /> <input type="text" />
<input type="text" autocomplete="name" /> <input type="text" autocomplete="name" />

@ -3,36 +3,36 @@
"code": "a11y-autocomplete-valid", "code": "a11y-autocomplete-valid",
"end": { "end": {
"column": 31, "column": 31,
"line": 20 "line": 24
}, },
"message": "A11y: The value 'true' is not supported by the attribute 'autocomplete' on element <input type=\"text\">", "message": "A11y: The value 'true' is not supported by the attribute 'autocomplete' on element <input type=\"text\">",
"start": { "start": {
"column": 19, "column": 19,
"line": 20 "line": 24
} }
}, },
{ {
"code": "a11y-autocomplete-valid", "code": "a11y-autocomplete-valid",
"end": { "end": {
"column": 43, "column": 43,
"line": 21 "line": 25
}, },
"message": "A11y: The value 'incorrect' is not supported by the attribute 'autocomplete' on element <input type=\"text\">", "message": "A11y: The value 'incorrect' is not supported by the attribute 'autocomplete' on element <input type=\"text\">",
"start": { "start": {
"column": 19, "column": 19,
"line": 21 "line": 25
} }
}, },
{ {
"code": "a11y-autocomplete-valid", "code": "a11y-autocomplete-valid",
"end": { "end": {
"column": 42, "column": 42,
"line": 22 "line": 26
}, },
"message": "A11y: The value 'webauthn' is not supported by the attribute 'autocomplete' on element <input type=\"text\">", "message": "A11y: The value 'webauthn' is not supported by the attribute 'autocomplete' on element <input type=\"text\">",
"start": { "start": {
"column": 19, "column": 19,
"line": 22 "line": 26
} }
} }
] ]

Loading…
Cancel
Save