chromium/third_party/blink/web_tests/fast/replaced/image-map-on-inline-image.html

<!DOCTYPE html>
<style>
.img { border-style: outset; border-width: 50px; content: "";}
</style>
<img usemap="#map" class="img">
<map name="map"><area shape="poly" coords="0,0,0,100,100,100,100,0"></map>
<p>crbug.com/485414: Inline content data creating an inline image object shouldn't cause an ASSERT. Click on the rectangle to test. </p>
<div id="result">Test passes if it does not crash.</div>
<script>
if (window.testRunner) {
    testRunner.dumpAsText();
    eventSender.mouseMoveTo(20, 20);
    eventSender.mouseDown();
    eventSender.mouseUp();
}
</script>