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-value-from-js-updates-visible-state.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<head>
<title>Modifying the value of a select element from JS should update the shadow tree</title>
<link rel="author" title="Simon Wülker" href="simon.wuelker@arcor.de">
<link rel="match" href="select-setting-value-from-js-updates-visible-state-ref.html">
</head>
<body>
<select id="select">
<option value="10">10</option>
<option value="20">20</option>
</select>
<script>
document.getElementById("select").value = "20";
</script>
</body>
</html>