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

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

Issue 11612021: Revert 137939 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1364/
Patch Set: Created 8 years 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
===================================================================
--- LayoutTests/platform/chromium/fast/events/touch/touch-target-removed-crash.html (revision 138019)
+++ LayoutTests/platform/chromium/fast/events/touch/touch-target-removed-crash.html (working copy)
@@ -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