Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(208)

Unified Diff: LayoutTests/platform/chromium/fast/events/touch/touch-target-removed-crash.html

Issue 14120003: Move LayoutTests from platform/chromium/... to generic location (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698