chromium/third_party/blink/web_tests/accessibility/image-map-with-indirect-area-crash.html

<!DOCTYPE html>
<html>
Test passes if it does not crash.
<body id=body>
<img usemap=#img height=500 width=613>
<map name=img>
<time>
<area shape=default>
<script>
if (window.testRunner)
    testRunner.dumpAsText();

if (window.accessibilityController) {
    body.focus();
    accessibilityController.focusedElement.elementAtPoint(100, 100);
}
</script>
</body>
</html>