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-hidden-with-select.html - WPT Dashboard Interop Dashboard
<html class="test-wait">
<head>
<script>
window.onload = function() {
requestAnimationFrame(() => {
requestAnimationFrame(() => {
document.querySelector('#will-hide').ariaHidden = 'true';
document.documentElement.className = '';
});
});
};
</script>
</head>
<body>
<main>
<div id="will-hide">
<div class="ignored">
<select id="select">
<option>1</option>
</select>
</div>
</div>
</main>
</body>
</html>