Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/semantics/forms/the-select-element/select-innerHTML-selected.html - WPT Dashboard Interop Dashboard
<!doctype html>
<meta charset="utf-8">
<title>Parser insertion via innerHTML with selected attribute</title>
<link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
<link rel="match" href="select-innerHTML-selected-ref.html">
<div id="target"></div>
<script>
onload = () => {
target.innerHTML = `
<select><option selected>ABC</option></select>
<select><option>ABC</option></select>
`;
};
</script>