map-update-crash.html (416B)
1 <!doctype HTML> 2 <style> 3 article::after { 4 content: url(data:text/plain,test);} 5 </style> 6 This test passes if it does not crash. 7 <img usemap="#map2"> 8 <map id=map name="map2"> 9 <command id=command> 10 <article id=article></article> 11 </command> 12 </map> 13 <script> 14 command.appendChild(article); 15 requestAnimationFrame(() => requestAnimationFrame(() => { 16 map.style.content = "none"; 17 })); 18 </script>