mirror of https://github.com/sveltejs/svelte
parent
05ac8f4322
commit
fe6e4e2b05
@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
"svelte": patch
|
||||||
|
---
|
||||||
|
|
||||||
|
fix: avoid hoisting error by using 'let' instead of 'var'
|
@ -0,0 +1,13 @@
|
|||||||
|
import { test } from '../../test';
|
||||||
|
|
||||||
|
export default test({
|
||||||
|
async test({ assert, target }) {
|
||||||
|
const input = target.querySelector('input');
|
||||||
|
|
||||||
|
input?.dispatchEvent(new Event('input', { bubbles: true }));
|
||||||
|
|
||||||
|
await Promise.resolve();
|
||||||
|
|
||||||
|
assert.htmlEqual(target.innerHTML, 'true <input class="hello">');
|
||||||
|
}
|
||||||
|
});
|
@ -0,0 +1,7 @@
|
|||||||
|
<script lang="ts">
|
||||||
|
const props = {};
|
||||||
|
let changed = $state(false);
|
||||||
|
</script>
|
||||||
|
|
||||||
|
{changed}
|
||||||
|
<input {...props} oninput={() => (changed = true)} class="hello" />
|
Loading…
Reference in new issue