Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /accessibility/crashtests/inert-br-child.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<!-- Test for crash when inert br gains illegal child -->
<html>
<dialog></dialog>
<br>
<script>
requestAnimationFrame(() => {
requestAnimationFrame(() => {
document.querySelector('dialog').showModal();
const br = document.querySelector('br');
br.appendChild(document.createElement('fieldset'));
});
});
</script>
</html>