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-attribute-crash.html - WPT Dashboard Interop Dashboard
<!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>