mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-02-02 22:34:55 +00:00
15 lines
218 B
HTML
15 lines
218 B
HTML
<!DOCTYPE html>
|
|
<!--form with only invalid elements -->
|
|
<html>
|
|
<head>
|
|
<style>
|
|
form:invalid { display: none; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<form>
|
|
<input required>
|
|
</form>
|
|
</body>
|
|
</html>
|