haikuwebkit/LayoutTests/fast/dom/HTMLAreaElement/area-islink-focus-null-ptr-...

15 lines
313 B
HTML

<!--
http://code.google.com/p/chromium/issues/detail?id=73650
https://bugs.webkit.org/show_bug.cgi?id=54877
-->
<div id="log">FAIL</div>
<script>
window.testRunner && testRunner.dumpAsText();
oArea = document.createElement('area');
oArea.href = 0;
oArea.focus();
log.innerHTML = "PASS";
</script>