Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /accessibility/crashtests/append-image-using-illegal-map.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<map name="map1"><button><li>xyz</li></button></map>
<script>
const image = document.createElement('img');
image.setAttribute('src', 'exists.gif');
image.setAttribute('usemap', '#map1');
document.documentElement.appendChild(image);
</script>