blob: 1faaedc13a5d151b3559c46dc654167cf0e44f83 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<!DOCTYPE html>
<html>
<!-- Test: if one radio in a group has the required attribute and no radio is
checked, all radio in the group should suffer from being missing. -->
<link rel='stylesheet' type='text/css' href='style.css'>
<body>
<input class='invalid' id='i1' name='foo' type='radio' required>
<input class='invalid' id='i2' name='foo' type='radio'>
</body>
</html>
|