mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-09 01:31:02 +00:00
15 lines
378 B
HTML
15 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>
|