1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-24 01:05:08 +00:00
serenity/Tests/LibWeb/Text/input/html-form-controls-collection.html
2023-08-20 11:04:03 +02:00

24 lines
797 B
HTML

<form>
<input name="one" id="my-form-control" type="button" />
<input name="two" id="my-form-control" type="text" />
</form>
<script src="include.js"></script>
<script>
test(() => {
const formElements = document.forms[0].elements;
const radioNodeList = formElements.namedItem("my-form-control");
println(formElements.constructor.name);
println(radioNodeList.constructor.name);
println(radioNodeList.length);
println(radioNodeList[0].type);
println(radioNodeList[1].type);
const nonMatching = formElements.namedItem("no match");
println(nonMatching);
const singleElement = formElements.namedItem("two");
println(singleElement.constructor.name);
println(singleElement.type);
})
</script>