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-reparent.html - WPT Dashboard Interop Dashboard
<html class="test-wait">
<script>
document.addEventListener("DOMContentLoaded", () => {
requestAnimationFrame(() => {
requestAnimationFrame(() => {
document.getElementById('owner').setAttribute('aria-owns','x');
document.body.setAttribute('aria-hidden', 'true');
document.documentElement.className = '';
});
});
});
</script>
</head>
<body>
<p id='owner'></p>
<div>
<fieldset id='x'></fieldset>
</div>
</body>
</html>