Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<html class=test-wait>
<link rel=author href="mailto:jarhar@chromium.org">
<!-- Attempting to slot a child of <select> after initial slot assignment should not crash. -->
<select size=1>
<optgroup></optgroup>
</select>
<script>
requestAnimationFrame(() => {
document.querySelector('optgroup').setAttribute('slot', 'slot1');
requestAnimationFrame(() => {
document.documentElement.classList.remove('test-wait');
});
});
</script>