| Index: LayoutTests/platform/chromium/fast/events/touch/touch-target-removed-crash.html
|
| diff --git a/LayoutTests/platform/chromium/fast/events/touch/touch-target-removed-crash.html b/LayoutTests/platform/chromium/fast/events/touch/touch-target-removed-crash.html
|
| deleted file mode 100644
|
| index 0c905bc48ca81fdf2e274f149b9a831fc835bf82..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/platform/chromium/fast/events/touch/touch-target-removed-crash.html
|
| +++ /dev/null
|
| @@ -1,25 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<html>
|
| -<body>
|
| -<p id="description">Test passes if no crash.</p>
|
| -<script>
|
| -if (!window.testRunner)
|
| - return;
|
| -
|
| -window.testRunner.dumpAsText();
|
| -
|
| -function crash() {
|
| - var div = document.createElement('div');
|
| - div.ontouchstart = function() { };
|
| - document.body.appendChild(div);
|
| - window.internals.touchEventHandlerCount(document);
|
| - div.parentNode.removeChild(div);
|
| - div = 0;
|
| - if (window.GCController)
|
| - GCController.collect();
|
| - window.internals.touchEventHandlerCount(document);
|
| -}
|
| -
|
| -crash();
|
| -</script>
|
| -</body>
|
|
|