blob: 0f1778d4d0edb82744db01d9d0e58e34ac219bd4 [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
<script src="../../resources/js-test-pre.js"></script>
</head>
<body>
<p id="description"></p>
<form method="get" id="happy_form">
<fieldset name="victim"></fieldset>
<input name="victim" type="text" value="lorem ipsum"/>
<button name="victim">lorem ipsum</button>
<select name="victim"></select>
<textarea name="victim"></textarea>
</form>
<div id="console"></div>
<script>
description("This test checks if checkValidity() returns correctly a true (meaning no error) result on form element.");
f = document.getElementById("happy_form");
shouldBe("f.checkValidity()", "true");
</script>
<script src="../../resources/js-test-post.js"></script>
</body>
</html>