Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /accessibility/crashtests/select-in-display-none.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html class="test-wait">
<!-- Ensure that a <select> in an area that becomes display:none after
being parsed as a <details> does not cause instability in the AX tree -->
<body>
<main>
<details>
<summary>Summary</summary>
<input type="checkbox"/>
<select>
<option value="abc">abc</option>
</select>
</details>
</main>
</body>
<script>
document.addEventListener('DOMContentLoaded', () => {
requestAnimationFrame(() => {
requestAnimationFrame(() => {
document.documentElement.className = '';
});
});
});
</script>
</html>