Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /accessibility/crashtests/aria-owns-destroyed-by-content-replacement.html - WPT Dashboard Interop Dashboard
<html class="test-wait">
<script>
window.onload = function fuzz() {
document.querySelector('audio').setAttribute('aria-owns', 'x1');
requestAnimationFrame(() => {
document.querySelector('audio').removeAttribute('aria-owns');
document.documentElement.className = '';
});
}
</script>
<audio>
<span id="x1"></span>
</audio>
</html>