blob: b89ce6fd76dedd8cd284b4655318aea7fa56bfd8 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script src="resources/utilities.js"></script>
<script>
if (window.testRunner && window.internals) {
testRunner.dumpAsText();
internals.settings.setHyperlinkAuditingEnabled(true);
testRunner.waitUntilDone();
}
function test()
{
setCookie();
clickElement(document.querySelector("img"));
}
window.onload = function ()
{
clearLastPingResultAndRunTest(test);
}
</script>
</head>
<body>
<img src="non-existent-image.jpg" width="128" height="128" usemap="#imagemap">
<map name="imagemap">
<area shape="rect" coords="0,0,128,128" href="../resources/check-ping.py" ping="../resources/save-ping.py">
</map>
</body>
</html>