mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 04:05:49 +00:00
13 lines
466 B
HTML
13 lines
466 B
HTML
<!DOCTYPE html>
|
|
<html class='reftest-wait'>
|
|
<!-- Test: if select is required and has a selected option and the selection
|
|
did changed, :-moz-ui-valid should apply. -->
|
|
<link rel='stylesheet' type='text/css' href='style.css'>
|
|
<body onload="document.getElementById('s').selectedIndex = 0;
|
|
document.documentElement.className = '';">
|
|
<select id='s' class='valid' required>
|
|
<option>foo</option>
|
|
</select>
|
|
</body>
|
|
</html>
|