1
0
mirror of https://github.com/roytam1/UXP.git synced 2026-06-12 19:38:36 +00:00
Files
UXP/layout/reftests/css-invalid/form/form-static-valid.html
T

15 lines
218 B
HTML

<!DOCTYPE html>
<!-- form with only valid elements -->
<html>
<head>
<style>
form:invalid { display: none; }
</style>
</head>
<body>
<form>
<input value='foo' required>
</form>
</body>
</html>