mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-10 02:18:57 +00:00
16 lines
254 B
HTML
16 lines
254 B
HTML
<!DOCTYPE html>
|
|
<!-- form with invalid and valid elements -->
|
|
<html>
|
|
<head>
|
|
<style>
|
|
form:invalid { display: none; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<form>
|
|
<input id='i' value='foo'>
|
|
<input required>
|
|
<form>
|
|
<body>
|
|
<html>
|