Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!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>