-
-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
reorder add attributes to fix value validation
- Loading branch information
1 parent
f3650a6
commit 149929b
Showing
3 changed files
with
47 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
33 changes: 33 additions & 0 deletions
33
test/runtime/samples/binding-input-range-change-with-max/_config.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
export default { | ||
html: ` | ||
<button></button> | ||
<input type=range min=0 max=10> | ||
<p>10 of 10</p> | ||
`, | ||
|
||
ssrHtml: ` | ||
<button></button> | ||
<input type=range min=0 max=10 value=10> | ||
<p>10 of 10</p> | ||
`, | ||
|
||
async test({ assert, target, window }) { | ||
const input = target.querySelector('input'); | ||
assert.equal(input.value, '10'); | ||
|
||
// should not change because max is 10, input range behaviour | ||
// seems there is bug in jsdom (HTMLInputElement-impl) which behaviour is different from real browsers | ||
// input.value = '20'; | ||
// assert.equal(input.value, '10'); | ||
|
||
const button = target.querySelector('button'); | ||
await button.dispatchEvent(new window.Event('click')); | ||
|
||
assert.equal(input.value, '20'); | ||
assert.htmlEqual(target.innerHTML, ` | ||
<button></button> | ||
<input type=range min=0 max=20> | ||
<p>20 of 20</p> | ||
`); | ||
}, | ||
}; |
13 changes: 13 additions & 0 deletions
13
test/runtime/samples/binding-input-range-change-with-max/main.svelte
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<script> | ||
let value=10; | ||
let max=10; | ||
function change() { | ||
value=20; | ||
max=20; | ||
} | ||
</script> | ||
|
||
<button on:click={change}/> | ||
<input type=range min=0 max={max} bind:value> | ||
<p>{value} of {max}</p> |