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-fallback-content.html - WPT Dashboard Interop Dashboard
<html class="test-wait">
<body>
<div aria-owns="id1"></div>
<video>
<mark>
<span id='id1'></span>
</mark>
</video>
</body>
<script>
window.onload = () => {
requestAnimationFrame(() => {
requestAnimationFrame(() => {
document.documentElement.style.display = 'none';
document.documentElement.className = '';
});
});
}
</script>