mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-28 05:52:53 +00:00
LibWeb: Add test for valueAsNumber
This commit is contained in:
parent
3572a047d1
commit
d503fd51ec
Notes:
sideshowbarker
2024-07-17 06:40:21 +09:00
Author: https://github.com/Lubrsi
Commit: d503fd51ec
Pull-request: https://github.com/SerenityOS/serenity/pull/21932
Reviewed-by: https://github.com/awesomekling
2 changed files with 95 additions and 0 deletions
|
@ -0,0 +1,49 @@
|
|||
<input id="input-element" value="100" style="display: none;" />
|
||||
<script src="../include.js"></script>
|
||||
<script>
|
||||
test(() => {
|
||||
const inputElement = document.getElementById("input-element");
|
||||
|
||||
const allInputTypes = [
|
||||
"hidden",
|
||||
"text",
|
||||
"search",
|
||||
"tel",
|
||||
"url",
|
||||
"email",
|
||||
"password",
|
||||
"date",
|
||||
"month",
|
||||
"week",
|
||||
"time",
|
||||
"datetime-local",
|
||||
"number",
|
||||
"range",
|
||||
"color",
|
||||
"checkbox",
|
||||
"radio",
|
||||
"file",
|
||||
"submit",
|
||||
"image",
|
||||
"reset",
|
||||
"button",
|
||||
];
|
||||
|
||||
println("valueAsNumber getter:");
|
||||
for (const type of allInputTypes) {
|
||||
inputElement.type = type;
|
||||
println(`${type}: ${inputElement.valueAsNumber}`);
|
||||
}
|
||||
|
||||
println("valueAsNumber setter:");
|
||||
for (const type of allInputTypes) {
|
||||
try {
|
||||
inputElement.type = type;
|
||||
inputElement.valueAsNumber = 100;
|
||||
println(`${type} did not throw: ${inputElement.valueAsNumber}`);
|
||||
} catch (e) {
|
||||
println(`${type} threw exception: ${e.name}: ${e.message}`);
|
||||
}
|
||||
}
|
||||
});
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue