</div>
<pre id="test">
<script>
/** Test for Bug 564001 **/
SimpleTest.waitForExplicitFinish();
var wrongArea = document.createElement("area");
wrongArea.shape = "default";
wrongArea.href = "#FAIL"; var wrongMap = document.createElement("map");
wrongMap.name = "map";
wrongMap.appendChild(wrongArea);
document.body.appendChild(wrongMap);
var rightArea = document.createElement("area");
rightArea.shape = "default";
rightArea.href = "#PASS"; var rightMap = document.createElement("map");
rightMap.name = "map";
rightMap.appendChild(rightArea);
document.body.insertBefore(rightMap, wrongMap);
var images = document.getElementsByTagName("img");
onhashchange = function() {
is(location.hash, "#PASS", "Should get the first map in tree order.");
SimpleTest.finish();
};
SimpleTest.waitForFocus(() => synthesizeMouse(images[0], 50, 50, {}));
</script>
</pre>
</body>
</html>
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.