mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
13 lines
475 B
HTML
13 lines
475 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 selected>foo</option>
|
|
</select>
|
|
</body>
|
|
</html>
|