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-owned-becomes-aria-hidden.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<script>
document.addEventListener("DOMContentLoaded", () => {
requestAnimationFrame(() => {
requestAnimationFrame(() => {
document.querySelector('div').ariaHidden = true;
requestAnimationFrame(() => {
requestAnimationFrame(() => {
document.documentElement.className = '';
});
});
});
});
});
</script>
<main>
<fieldset aria-owns="owned"></fieldset>
</main>
<div>
<footer id="owned">
<mark>
owned
</mark>
</footer>
</div>
</html>