Skip to content

Commit d09b865

Browse files
committed
Adding a test for novalidate attribute casing
1 parent 09510c8 commit d09b865

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import { test } from '../../test';
2+
3+
export default test({
4+
html: `
5+
<form novalidate></form>
6+
<form novalidate></form>
7+
`
8+
});
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<script>
2+
let noValidate = $state(true);
3+
</script>
4+
5+
<form novalidate={true}></form>
6+
<form {noValidate}></form>

0 commit comments

Comments
 (0)