mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
11 lines
401 B
HTML
11 lines
401 B
HTML
<!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>
|