mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-03 07:32:00 +00:00
14 lines
378 B
HTML
14 lines
378 B
HTML
<!DOCTYPE html>
|
|
<script src="../include.js"></script>
|
|
<select id="select-test">
|
|
<option>Option 1</option>
|
|
<option>Option 2</option>
|
|
</select>
|
|
<script>
|
|
test(() => {
|
|
const s = document.getElementById("select-test");
|
|
if (s.value === "Option 1" && s.selectedOptions[0].selected) {
|
|
println("PASS (correct value)");
|
|
}
|
|
});
|
|
</script>
|