summaryrefslogtreecommitdiffstats
path: root/LayoutTests/fast/dom/Node/script-tests/DOMNodeRemovedEvent.js
blob: a149c1d0c1760c7fced7e07f753aa896618fd127 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
description("This test checks that DOMNodeRemovedEvent is emitted once (and only once).");

var div = document.createElement("div");
document.body.appendChild(div);

var count = 0;
document.body.addEventListener("DOMNodeRemoved", function () { count++; }, false);
document.body.removeChild(div);

shouldBe("count", "1");

var successfullyParsed = true;