aria-owns-inside-map.html (487B)
1 <!DOCTYPE html> 2 <!-- Test that aria-owns pointing into a map does not crash --> 3 <html class="test-wait"> 4 <map > 5 <a href=''> 6 <del id='1' hidden></del> 7 <del id='2'></del> 8 </a> 9 </map> 10 <div></div> 11 12 <script> 13 document.addEventListener('DOMContentLoaded', () => { 14 requestAnimationFrame(() => { 15 requestAnimationFrame(() => { 16 document.querySelector('div').setAttribute('aria-owns','2 1'); 17 document.documentElement.className = ''; 18 }); 19 }); 20 }); 21 </script> 22 </html>