mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-01 08:49:56 +00:00
15 lines
246 B
HTML
15 lines
246 B
HTML
<!DOCTYPE html>
|
|
<!-- fieldset with only valid elements -->
|
|
<html>
|
|
<head>
|
|
<style>
|
|
fieldset:valid { display: none; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<fieldset id="fieldset">
|
|
<input value='foo' required>
|
|
</fieldset>
|
|
</body>
|
|
</html>
|