blob: 9b7b858eadb25762a302af1d3f5b6abc15f3e1ef [file] [log] [blame]
<script src="../../../resources/testharness.js"></script>
<script src="../../../resources/testharnessreport.js"></script>
<select id="select">
<option>FAIL</option>
<option>PASS</option>
<option selected="true">Did not run</option>
</select>
<script>
test(() => {
select.selectedIndex = 1;
assert_equals(select.selectedIndex, 1);
});
</script>