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

Unified Diff: LayoutTests/platform/chromium/plugins/touch-events-details.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/plugins/touch-events-details.html
diff --git a/LayoutTests/platform/chromium/plugins/touch-events-details.html b/LayoutTests/platform/chromium/plugins/touch-events-details.html
deleted file mode 100644
index 03f1b07277e3bff3c5770440087c6efda56ed600..0000000000000000000000000000000000000000
--- a/LayoutTests/platform/chromium/plugins/touch-events-details.html
+++ /dev/null
@@ -1,33 +0,0 @@
-<html>
-<head>
-<style>
- #plugin {
- width: 150px;
- height: 150px;
- }
-</style>
-</head>
-
-<body>
-<embed id="plugin" type="application/x-webkit-test-webplugin" accepts-touch="raw" print-event-details="true"></embed>
-<script>
-
- if (!window.testRunner || !window.eventSender) {
- document.write("This test does not work in manual mode.");
- } else {
- testRunner.dumpAsText();
-
- var positionX = plugin.offsetLeft + 10;
- var positionY = plugin.offsetTop + 10;
- eventSender.addTouchPoint(positionX, positionY);
- eventSender.touchStart();
- eventSender.updateTouchPoint(0, positionX + 10, positionY + 5);
- eventSender.touchMove();
- eventSender.releaseTouchPoint(0);
- eventSender.touchEnd();
- }
-
-</script>
-</body>
-</html>
-

Powered by Google App Engine
This is Rietveld 408576698