mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
14 lines
516 B
HTML
14 lines
516 B
HTML
<!DOCTYPE html>
|
|
<html class='reftest-wait'>
|
|
<!-- Test: if select is required and the selected option has an empty
|
|
string value and the selection did changed,
|
|
:-moz-ui-invalid 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='invalid' required>
|
|
<option value="">foo</option>
|
|
</select>
|
|
</body>
|
|
</html>
|