Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /accessibility/crashtests/map-inside-map-2.html - WPT Dashboard Interop Dashboard
<html>
<img usemap="map2" class="img-outside-map">
<map name="map2"></map>
<script>
const img = document.createElement('img');
img.className = 'img-inside-map';
img.setAttribute('usemap', '#map2');
img.style.visibility = 'collapse';
document.querySelector('map').appendChild(img);
</script>
</html>