summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/dom/Document/document-elementFromPoint-empty-document.html
blob: c4a29252f7d8ece87b5ce023afd78992c7c8fa55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<html>
<script src="../../../resources/js-test.js"></script>
<script>
description("Document.elementFromPoint() against empty document shouldn't crash.");
window.jsTestIsAsync = true;
toBeRemoved = document.documentElement;
toBeRemoved.remove();
window.setTimeout(function() {
    document.elementFromPoint(0, 0);
    document.appendChild(toBeRemoved);
    debug("PASS unless crash");
    finishJSTest();
}, 0);
</script>
</html>