Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/rendering/replaced-elements/the-select-element/select-setting-selected-option-from-js-updates-visible-state.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<head>
<title>Adding the selected attribute to an option of a select element from JS should update the shadow tree</title>
<link rel="author" title="Avi Raj Kapila" href="kapilaar@rose-hulman.edu">
<link rel="match" href="select-setting-selected-option-from-js-updates-visible-state-ref.html">
</head>
<body>
<select id="select">
<option id="10" value="10">10</option>
<option id="20" value="20">20</option>
</select>
<script>
document.getElementById("20").selected = true;
</script>
</body>
</html>