| Index: third_party/WebKit/LayoutTests/fast/dom/Node/script-tests/DOMNodeRemovedEvent.js
|
| diff --git a/third_party/WebKit/LayoutTests/fast/dom/Node/script-tests/DOMNodeRemovedEvent.js b/third_party/WebKit/LayoutTests/fast/dom/Node/script-tests/DOMNodeRemovedEvent.js
|
| deleted file mode 100644
|
| index af3c97a455a202bcc86b694c872a38f69b737908..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/fast/dom/Node/script-tests/DOMNodeRemovedEvent.js
|
| +++ /dev/null
|
| @@ -1,10 +0,0 @@
|
| -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");
|
|
|