mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-07-20 05:23:18 +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>
|