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/customizable-select/select-optgroup-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<link rel=author href="mailto:jarhar@chromium.org">
<script>
const div = document.createElement('div');
const optgroup = document.createElement('optgroup');
const option = document.createElement('option');
const select = document.createElement('select');
div.appendChild(option);
div.appendChild(optgroup);
select.appendChild(div);
</script>